Ticket #7027: 7027.patch
File 7027.patch, 626 bytes (added by , 14 years ago) |
---|
-
_source/plugins/dialog/plugin.js
1947 1947 resizeCover = resizeFunc; 1948 1948 win.on( 'resize', resizeFunc ); 1949 1949 resizeFunc(); 1950 coverElement.focus(); 1950 // Using Safari/Mac, focus must be kept where it is (#7027) 1951 if ( !( CKEDITOR.env.mac && CKEDITOR.env.webkit ) ) 1952 coverElement.focus(); 1953 1951 1954 if ( CKEDITOR.env.ie6Compat ) 1952 1955 { 1953 1956 // IE BUG: win.$.onscroll assignment doesn't work.. it must be window.onscroll.