Ticket #3429: 3249.patch
File 3249.patch, 1.4 KB (added by , 16 years ago) |
---|
-
_whatsnew.html
50 50 About plugin shows misleading user language</li> 51 51 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2821">#2821</a>] Configuration 52 52 items that used floating point numbers were parsed as integers.</li> 53 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3249">#3249</a>] Fixed 54 problem in IE8 with XHTML doctype. Thanks to duncansimey.</li> 53 55 <li>Language file updates for the following languages: 54 56 <ul> 55 57 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2849">#2849</a>] Lithuanian</li> -
editor/_source/internals/fck_ie.js
448 448 // Radio buttons and checkboxes should not be allowed to be triggered in IE 449 449 // in editable mode. Otherwise the whole browser window may be locked by 450 450 // the buttons. (#1782) 451 if ( e.nodeName .IEquals( 'input' ) && e.type.IEquals( ['radio', 'checkbox'] ) && !e.disabled )451 if ( e.nodeName && e.nodeName.IEquals( 'input' ) && e.type.IEquals( ['radio', 'checkbox'] ) && !e.disabled ) 452 452 { 453 453 e.disabled = true ; 454 454 FCKTools.SetTimeout( _FCK_RemoveDisabledAtt, 1, e ) ;