Changeset 7448
- Timestamp:
- 04/05/12 08:07:23 (14 months ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/popup/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r7439 r7448 86 86 <li><a href="http://dev.ckeditor.com/ticket/8400">#8400</a> : [IE] Fix script error when closing cellProperties dialog if table cell text is selected.</li> 87 87 <li><a href="http://dev.ckeditor.com/ticket/8248">#8248</a> : [IE8] Fix BACKSPACE/DEL keys when working at the start/end of list items.</li> 88 <li><a href="http://dev.ckeditor.com/ticket/8855">#8855</a> : [Chrome] Fix popup window size in Chrome 18.</li> 88 89 </ul> 89 90 <h3> -
CKEditor/trunk/_source/plugins/popup/plugin.js
r6348 r7448 50 50 try 51 51 { 52 popupWindow.moveTo( left, top ); 53 popupWindow.resizeTo( width, height ); 52 // Chrome 18 is problematic, but it's not really needed here (#8855). 53 var ua = navigator.userAgent.toLowerCase(); 54 if ( ua.indexOf( ' chrome/18' ) == -1 ) 55 { 56 popupWindow.moveTo( left, top ); 57 popupWindow.resizeTo( width, height ); 58 } 54 59 popupWindow.focus(); 55 60 popupWindow.location.href = url;
Note: See TracChangeset
for help on using the changeset viewer.
