Radiate.prototype.createPostIFrame = function()

in Radii8Designer/src/js/Radiate.js [47:58]


Radiate.prototype.createPostIFrame = function () {

	if (document.getElementById("wordpressthing")==null) {
	    var iframe = document.createElement('iframe');
	    iframe.id="wordpressthing";
	    iframe.width = "100%";
		iframe.src = "http://www.radii8.com/blog/wp-admin/post.php?post=212&action=edit";
		iframe.style="display:none";
		document.body.appendChild(iframe);
		this.postFrame = iframe;
	}
}