Changeset 663
- Timestamp:
- 01/16/07 04:33:39 (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/testbed.html
r662 r663 55 55 xinha_plugins = xinha_plugins ? xinha_plugins : 56 56 [ 57 57 'FullPage', 'SpellChecker' 58 58 ]; 59 59 // THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING :) -
trunk/plugins/SpellChecker/spell-check-ui.js
r498 r663 12 12 var SpellChecker = window.opener.SpellChecker; 13 13 14 var HTMLArea = window.opener.HTMLArea; 14 var Xinha = window.opener.Xinha; 15 var HTMLArea = Xinha; 16 15 17 var _editor_url = window.opener._editor_url; 16 18 … … 46 48 // HTML to such extent that our poor Perl parser doesn't understand it 47 49 // anymore. 48 return window.opener.HTMLArea.getHTML(frame.contentWindow.document.body, false, editor);50 return Xinha.getHTML(frame.contentWindow.document.body, true, editor); 49 51 } 50 52
Note: See TracChangeset
for help on using the changeset viewer.