witten
/
luminotes
Archived
1
0
Fork 0

Fixed a bug that prevent "new note" button from working in discussion forums.

This commit is contained in:
Dan Helfman 2009-07-14 19:56:36 -07:00
parent 69d113142c
commit 2a8405e2ad
1 changed files with 2 additions and 1 deletions

View File

@ -1031,10 +1031,11 @@ Editor.prototype.cleanup_html = function ( key_code ) {
}
Editor.prototype.cleanup_range = function () {
if ( this.iframe.contentWindow.getSelection )
if ( this.iframe && this.iframe.contentWindow.getSelection ) {
var selection = this.iframe.contentWindow.getSelection();
if ( selection.isCollapsed )
this.exec_command( "removeformat" );
}
}
Editor.prototype.unformat_selection = function () {