Changeset 12583
- Timestamp:
- 02/21/08 03:48:33 (11 months ago)
- Location:
- branches/1.0/dijit/trunk
- Files:
-
- 2 modified
-
tests/test_Editor.html (modified) (1 diff)
-
_editor/RichText.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/dijit/trunk/tests/test_Editor.html
r11777 r12583 29 29 30 30 <div style="border: 1px solid black;"> 31 <div dojoType="dijit.Editor" id="editor1" ><p>This instance is created from a div directly with default toolbar and plugins</p></div>31 <div dojoType="dijit.Editor" id="editor1" onChange="console.log('onChanged fired')"><p>This instance is created from a div directly with default toolbar and plugins</p></div> 32 32 </div> 33 33 <button onClick="dijit.byId('editor1').destroy()">destroy</button> -
branches/1.0/dijit/trunk/_editor/RichText.js
r11777 r12583 629 629 // summary: handler after the content of the document finishes loading 630 630 this.isLoaded = true; 631 if(!this.window.__registeredWindow){ 632 this.window.__registeredWindow=true; 633 dijit.registerWin(this.window); 634 } 631 635 if(this.height || dojo.isMoz){ 632 636 this.editNode=this.document.body;