Radiate.prototype.setPostTitle = function()

in Radii8Designer/src/js/Radiate.js [165:173]


Radiate.prototype.setPostTitle = function (value) {
	if (this.postFrame) {
		this.postFrame.contentDocument.getElementById('title').value = value;
		console.log("Title set to: " + value);
		return true;
	}
	
	return false;
}