Skip to content

Commit

Permalink
Merge branch 't/9958'
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed Aug 27, 2013
2 parents bde01c9 + 47fd2c0 commit ba119ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -5,6 +5,7 @@ CKEditor 4 Changelog

* [#9330](http://dev.ckeditor.com/ticket/9330): Fixed pasting anchors from MS Word.
* [#8103](http://dev.ckeditor.com/ticket/8103): Fixed pasting nested lists from MS Word.
* [#9958](http://dev.ckeditor.com/ticket/9958): Press ok button will trigger onbeforeunload event in popup-dialog on ie9.
* [#10662](http://dev.ckeditor.com/ticket/10662): Fixed styles from Styles drop-down list not registered to the ACF in case when [Shared Spaces plugin](http://ckeditor.com/addon/sharedspace) is used.
* [#9654](http://dev.ckeditor.com/ticket/9654): Problems with IE10 Quirks mode.
* [#9816](http://dev.ckeditor.com/ticket/9816): Floating toolbar does not reposition vertically in several cases.
Expand Down
6 changes: 5 additions & 1 deletion plugins/dialogui/plugin.js
Expand Up @@ -461,7 +461,11 @@ CKEDITOR.plugins.add( 'dialogui', {
var element = this.getElement();

(function() {
element.on( 'click', me.click, me );
element.on( 'click', function( evt ) {
me.click();
// #9958
evt.data.preventDefault();
} );

element.on( 'keydown', function( evt ) {
if ( evt.data.getKeystroke() in { 32:1 } ) {
Expand Down

0 comments on commit ba119ff

Please sign in to comment.