Ticket #3520: 3520_2.patch

File 3520_2.patch, 2.2 KB (added by Martin Kou, 15 years ago)
  • _source/plugins/clipboard/dialogs/paste.js

     
    1010        return {
    1111                title : editor.lang.clipboard.title,
    1212
    13                 minWidth : 350,
    14                 minHeight : 240,
     13                minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 370 : 350,
     14                minHeight : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 250 : 240,
    1515                htmlToLoad : '<!doctype html><script type="text/javascript">'
    1616                                + 'window.onload = function()'
    1717                                + '{'
  • _source/plugins/pastetext/dialogs/pastetext.js

     
    1010                        return {
    1111                                title : editor.lang.pasteText.title,
    1212
    13                                 minWidth : 350,
     13                                minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 368 : 350,
    1414                                minHeight : 240,
    1515
    1616                                onShow : function()
  • _source/plugins/table/dialogs/table.js

     
    2323                return {
    2424                        title : editor.lang.table.title,
    2525                        minWidth : 250,
    26                         minHeight : CKEDITOR.env.ie ? 280 : 265,
     26                        minHeight : 280,
    2727                        onShow : function()
    2828                        {
    2929                                // Detect if there's a selected table.
  • _source/plugins/pastefromword/dialogs/pastefromword.js

     
    77{
    88        return {
    99                title : editor.lang.pastefromword.title,
    10                 minWidth : 350,
    11                 minHeight : 250,
     10                minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 370 : 350,
     11                minHeight : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 270 : 250,
    1212                htmlToLoad : '<!doctype html><script type="text/javascript">'
    1313                                + 'window.onload = function()'
    1414                                + '{'
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy