Radiate.prototype.getPostContent = function()

in Radii8Designer/src/js/Radiate.js [144:152]


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