Ajax.InPlaceEditor will not let you edit HTML as it strips all tags
coming from the loadTextURL Ajax callback. Bug or feature? I say bug.

The patch below fixes this.

-Rob

--- js/controls.js.old  2006-03-02 13:46:26.000000000 +0000
+++ js/controls.js      2006-03-02 13:46:29.000000000 +0000
@@ -628,7 +628,7 @@
   onLoadedExternalText: function(transport) {
     Element.removeClassName(this.form, this.options.loadingClassName);
     this.editField.disabled = false;
-    this.editField.value = transport.responseText.stripTags();
+    this.editField.value = transport.responseText;
   },
   onclickCancel: function() {
     this.onComplete();
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to