// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

//override default behavior of in place editing -- don't let it consume html tags.
Ajax.InPlaceEditor.prototype.onLoadedExternalText = function(transport) 
{
    Element.removeClassName(this.form, this.options.loadingClassName);
    this.editField.disabled = false;
    this.editField.value = transport.responseText;
}
