Skip to content

Instantly share code, notes, and snippets.

@jpemberthy
Created September 9, 2010 19:08
Show Gist options
  • Save jpemberthy/572359 to your computer and use it in GitHub Desktop.
Save jpemberthy/572359 to your computer and use it in GitHub Desktop.
// let's extend InPlaceEditor to send the HTML to the server.
Object.extend(Ajax.InPlaceEditor.prototype, {
onLoadedExternalText: function(transport) {
Element.removeClassName(this.form,
this.options.loadingClassName);
this.editField.disabled = false;
this.editField.value = transport.responseText;
Field.scrollFreeActivate(this.editField);
}
});
Object.extend(Ajax.InPlaceEditor.prototype, {
getText: function() {
return this.element.innerHTML;}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment