Ticket #3743: 3743.patch

File 3743.patch, 4.4 KB (added by Martin Kou, 15 years ago)
  • _source/plugins/about/dialogs/about.js

     
    99
    1010        return {
    1111                title : lang.title,
    12                 minWidth : 380,
    13                 minHeight : 210,
     12                minWidth : 390,
     13                minHeight : 230,
    1414                contents : [
    1515                        {
    1616                                id : 'tab1',
  • _source/plugins/forms/dialogs/textfield.js

     
    2020        return {
    2121                title : editor.lang.textfield.title,
    2222                minWidth : 350,
    23                 minHeight : 140,
     23                minHeight : 150,
    2424                onShow : function()
    2525                {
    2626                        var element = this.getParentEditor().getSelection().getSelectedElement();
  • _source/plugins/forms/dialogs/button.js

     
    77        return {
    88                title : editor.lang.button.title,
    99                minWidth : 350,
    10                 minHeight : 140,
     10                minHeight : 150,
    1111                onShow : function()
    1212                {
    1313                        var element = this.getParentEditor().getSelection().getSelectedElement();
  • _source/plugins/forms/dialogs/radio.js

     
    77        return {
    88                title : editor.lang.checkboxAndRadio.radioTitle,
    99                minWidth : 350,
    10                 minHeight : 130,
     10                minHeight : 140,
    1111                onShow : function()
    1212                {
    1313                        var element = this.getParentEditor().getSelection().getSelectedElement();
  • _source/plugins/forms/dialogs/select.js

     
    131131
    132132        return {
    133133                title : editor.lang.select.title,
    134                 minWidth : 375,
    135                 minHeight : 300,
     134                minWidth : CKEDITOR.env.ie ? 440 : 375,
     135                minHeight : CKEDITOR.env.ie ? 320 : 300,
    136136                onShow : function()
    137137                {
    138138                        this.setupContent( 'clear' );
  • _source/plugins/forms/dialogs/form.js

     
    1616        return {
    1717                title : editor.lang.form.title,
    1818                minWidth : 350,
    19                 minHeight : 190,
     19                minHeight : 200,
    2020                onShow : function()
    2121                {
    2222                        var element = this.getParentEditor().getSelection().getStartElement();
  • _source/plugins/table/dialogs/table.js

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

     
    88        return {
    99                title : editor.lang.pastefromword.title,
    1010                minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 370 : 350,
    11                 minHeight : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 270 : 250,
     11                minHeight : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 270 : 260,
    1212                htmlToLoad : '<!doctype html><script type="text/javascript">'
    1313                                + 'window.onload = function()'
    1414                                + '{'
  • _source/plugins/templates/dialogs/templates.js

     
    104104                        return {
    105105                                title :editor.lang.templates.title,
    106106
    107                                 minWidth : 400,
     107                                minWidth : CKEDITOR.env.ie ? 440 : 400,
    108108                                minHeight : 310,
    109109
    110110                                contents :
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy