Ticket #3520: 3520_2.patch
File 3520_2.patch, 2.2 KB (added by , 14 years ago) |
---|
-
_source/plugins/clipboard/dialogs/paste.js
10 10 return { 11 11 title : editor.lang.clipboard.title, 12 12 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, 15 15 htmlToLoad : '<!doctype html><script type="text/javascript">' 16 16 + 'window.onload = function()' 17 17 + '{' -
_source/plugins/pastetext/dialogs/pastetext.js
10 10 return { 11 11 title : editor.lang.pasteText.title, 12 12 13 minWidth : 350,13 minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 368 : 350, 14 14 minHeight : 240, 15 15 16 16 onShow : function() -
_source/plugins/table/dialogs/table.js
23 23 return { 24 24 title : editor.lang.table.title, 25 25 minWidth : 250, 26 minHeight : CKEDITOR.env.ie ? 280 : 265,26 minHeight : 280, 27 27 onShow : function() 28 28 { 29 29 // Detect if there's a selected table. -
_source/plugins/pastefromword/dialogs/pastefromword.js
7 7 { 8 8 return { 9 9 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, 12 12 htmlToLoad : '<!doctype html><script type="text/javascript">' 13 13 + 'window.onload = function()' 14 14 + '{'