Changeset 458
- Timestamp:
- 01/19/06 00:35:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/htmlarea.js
r457 r458 4467 4467 4468 4468 // returns the current selection object 4469 HTMLArea.prototype._getSelection = function() { 4470 if (HTMLArea.is_ie) { 4469 if (HTMLArea.is_ie) 4470 { 4471 HTMLArea.prototype._getSelection = function() 4472 { 4471 4473 return this._doc.selection; 4472 } else { 4474 }; 4475 } 4476 else 4477 { 4478 HTMLArea.prototype._getSelection = function() 4479 { 4473 4480 return this._iframe.contentWindow.getSelection(); 4474 } 4475 } ;4481 }; 4482 } 4476 4483 4477 4484 // returns a range for the current selection
Note: See TracChangeset
for help on using the changeset viewer.