Radiate.prototype.getPostTitle = function()

in Radii8Designer/src/js/Radiate.js [134:142]


Radiate.prototype.getPostTitle = function () {
	if (this.postFrame) {
		var value = this.postFrame.contentDocument.getElementById('title').value;
		console.log("Title: " + value);
		return value;
	}
	
	return null;
}