witten
/
luminotes
Archived
1
0
Fork 0

Fix for another IE 6 error.

This commit is contained in:
Dan Helfman 2009-01-15 19:14:07 -08:00
parent d212797f7d
commit 6df7b734e7
1 changed files with 3 additions and 1 deletions

View File

@ -1032,7 +1032,9 @@ Editor.prototype.shutdown = function( event ) {
if ( this.iframe ) {
var iframe = this.iframe;
this.iframe = null;
// keeping a reference to the iframe allows removeElement( editor_node ) below to work in IE 6
if ( !MSIE6 )
this.iframe = null;
disconnectAll( this );
disconnectAll( this.delete_button );
disconnectAll( this.changes_button );