Changeset 335
- Timestamp:
- 09/22/05 06:31:14 (8 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 1 modified
-
htmlarea.js (modified) (2 diffs)
-
plugins/ClientsideSpellcheck (added)
-
plugins/ClientsideSpellcheck/clientside-spellcheck.js (added)
-
plugins/ClientsideSpellcheck/img (added)
-
plugins/ClientsideSpellcheck/img/clientside-spellcheck.gif (added)
-
plugins/ClientsideSpellcheck/img/he-spell-check.gif (added)
-
plugins/ClientsideSpellcheck/lang (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htmlarea.js
r332 r335 316 316 ["separator","insertorderedlist","insertunorderedlist","outdent","indent"], 317 317 ["separator","inserthorizontalrule","createlink","insertimage","inserttable"], 318 ["separator","undo","redo","selectall"], (HTMLArea.is_gecko ? [] : ["cut","copy","paste","overwrite","saveas"]), 319 ["separator","killword","removeformat","toggleborders","lefttoright", "righttoleft","separator","htmlmode","about"] 318 ["separator","undo","redo","selectall","print"], (HTMLArea.is_gecko ? [] : ["cut","copy","paste","overwrite","saveas"]), 319 ["separator","killword","clearfonts","removeformat","toggleborders","splitblock","lefttoright", "righttoleft"], 320 ["separator","htmlmode","about"] 320 321 ]; 321 322 … … 2353 2354 HTMLArea.prototype._splitBlock = function() 2354 2355 { 2355 this._doc.execCommand('formatblock', false, ' <div>');2356 this._doc.execCommand('formatblock', false, 'div'); 2356 2357 } 2357 2358
