Radiate.prototype.getPostId = function()

in Radii8Designer/src/js/Radiate.js [154:162]


Radiate.prototype.getPostId = function () {
	if (this.postFrame) {
		var value = this.postFrame.contentDocument.getElementById('post_ID').value;
		console.log("Post ID: " + value);
		return value;
	}
	
	return null;
}