witten
/
luminotes
Archived
1
0
Fork 0

Simplified cleanup_range() function.

This commit is contained in:
Dan Helfman 2009-07-12 13:55:48 -07:00
parent 73ba66ea72
commit 81e3ca7ab2
1 changed files with 4 additions and 11 deletions

View File

@ -1031,17 +1031,10 @@ Editor.prototype.cleanup_html = function ( key_code ) {
}
Editor.prototype.cleanup_range = function () {
if ( !this.iframe.contentWindow.getSelection )
return;
var selection = this.iframe.contentWindow.getSelection();
if ( selection.rangeCount > 0 )
var range = selection.getRangeAt( 0 );
else
var range = this.document.createRange();
if ( range.collapsed )
this.exec_command( "removeformat" );
if ( this.iframe.contentWindow.getSelection )
var selection = this.iframe.contentWindow.getSelection();
if ( selection.isCollapsed )
this.exec_command( "removeformat" );
}
Editor.prototype.unformat_selection = function () {