Skip to content

Commit

Permalink
[IE>=9] Properly listen on onChange for dialog.ui.checkbox.
Browse files Browse the repository at this point in the history
Fire onChange event for IE9 http://dev.ckeditor.com/ticket/9787
  • Loading branch information
AlfonsoML authored and Reinmar committed Dec 10, 2012
1 parent edaeac0 commit 5a867b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/dialogui/plugin.js
Expand Up @@ -1057,7 +1057,7 @@ CKEDITOR.plugins.add( 'dialogui', {
*/
eventProcessors: {
onChange: function( dialog, func ) {
if ( !CKEDITOR.env.ie )
if ( !CKEDITOR.env.ie || ( CKEDITOR.env.version > 8 ) )
return commonEventProcessors.onChange.apply( this, arguments );
else {
dialog.on( 'load', function() {
Expand Down

0 comments on commit 5a867b9

Please sign in to comment.