Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bspaulding/298329 to your computer and use it in GitHub Desktop.
Save bspaulding/298329 to your computer and use it in GitHub Desktop.
Ajax.InPlaceEditorWithEmptyText = Class.create(Ajax.InPlaceEditor, {
initialize: function($super, element, url, options) {
if (!options.emptyText) options.emptyText = "Click to Edit";
if (!options.emptyClassName) options.emptyClassName = "inplaceeditor-empty";
$super(element, url, options);
this.checkEmpty();
},
checkEmpty: function() {
if(window.console)
window.console.log("checkEmpty() called.");
if (this.element.innerHTML.length == 0 && this.options.emptyText) {
this.element.appendChild(
new Element("span", { className : this.options.emptyClassName }).update(this.options.emptyText)
);
}
},
getText: function($super) {
if (empty_span = this.element.select("." + this.options.emptyClassName).first()) {
empty_span.remove();
}
return $super();
},
leaveEditMode: function($super, transport) {
retval = $super(transport);
this.checkEmpty();
return retval;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment