Author: simoneg
Date: Wed Jan 20 15:25:43 2010
New Revision: 901234

URL: http://svn.apache.org/viewvc?rev=901234&view=rev
Log:
Autosave while editing HTML source

Modified:
    
labs/magma/trunk/website-dojo-textareas-showsource/src/main/resources/dojo-1.3.0/dijit/_editor/plugins/ViewSource.js

Modified: 
labs/magma/trunk/website-dojo-textareas-showsource/src/main/resources/dojo-1.3.0/dijit/_editor/plugins/ViewSource.js
URL: 
http://svn.apache.org/viewvc/labs/magma/trunk/website-dojo-textareas-showsource/src/main/resources/dojo-1.3.0/dijit/_editor/plugins/ViewSource.js?rev=901234&r1=901233&r2=901234&view=diff
==============================================================================
--- 
labs/magma/trunk/website-dojo-textareas-showsource/src/main/resources/dojo-1.3.0/dijit/_editor/plugins/ViewSource.js
 (original)
+++ 
labs/magma/trunk/website-dojo-textareas-showsource/src/main/resources/dojo-1.3.0/dijit/_editor/plugins/ViewSource.js
 Wed Jan 20 15:25:43 2010
@@ -410,6 +410,11 @@
                                this.button.attr("checked", false);
                                setTimeout(dojo.hitch(this, 
function(){ed.focus();}), 100);
                                dojo.stopEvent(e);
+                       } else {
+                               // Auto save when in text area mode
+                               html = this.sourceArea.value;
+                               html = this._filter(html);
+                               ed.attr("value", html);                         
                        }
                }));
        },



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to