JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _source / skins / office2003 / skin.js
index fa30b41..43eb314 100644 (file)
@@ -1,23 +1,14 @@
 /*\r
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.\r
 For licensing, see LICENSE.html or http://ckeditor.com/license\r
 */\r
 \r
 CKEDITOR.skins.add( 'office2003', (function()\r
 {\r
-       var preload = [];\r
-\r
-       if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )\r
-       {\r
-               // For IE6, we need to preload some images, otherwhise they will be\r
-               // downloaded several times (CSS background bug).\r
-               preload.push( 'icons.png', 'images/sprites_ie6.png', 'images/dialog_sides.gif' );\r
-       }\r
-\r
        return {\r
-               preload         : preload,\r
                editor          : { css : [ 'editor.css' ] },\r
                dialog          : { css : [ 'dialog.css' ] },\r
+               separator               : { canGroup: false },\r
                templates       : { css : [ 'templates.css' ] },\r
                margins         : [ 0, 14, 18, 14 ]\r
        };\r
@@ -46,30 +37,32 @@ CKEDITOR.skins.add( 'office2003', (function()
                                                height : height + 'px'\r
                                        });\r
 \r
-                               if ( !CKEDITOR.env.ie )\r
+                               if ( !CKEDITOR.env.ie || CKEDITOR.env.ie9Compat )\r
                                        return;\r
 \r
                                // Fix the size of the elements which have flexible lengths.\r
                                var fixSize = function()\r
                                        {\r
                                                var innerDialog = dialog.parts.dialog.getChild( [ 0, 0, 0 ] ),\r
-                                                       body = innerDialog.getChild( 0 );\r
+                                                       body = innerDialog.getChild( 0 ),\r
+                                                       bodyWidth = body.getSize( 'width' );\r
+                                               height += body.getChild( 0 ).getSize( 'height' ) + 1;\r
 \r
                                                // tc\r
                                                var el = innerDialog.getChild( 2 );\r
-                                               el.setStyle( 'width', ( body.$.offsetWidth ) + 'px' );\r
+                                               el.setSize( 'width', bodyWidth );\r
 \r
                                                // bc\r
                                                el = innerDialog.getChild( 7 );\r
-                                               el.setStyle( 'width', ( body.$.offsetWidth - 28 ) + 'px' );\r
+                                               el.setSize( 'width', bodyWidth - 28 );\r
 \r
                                                // ml\r
                                                el = innerDialog.getChild( 4 );\r
-                                               el.setStyle( 'height', ( height + body.getChild(0).$.offsetHeight ) + 'px' );\r
+                                               el.setSize( 'height', height );\r
 \r
                                                // mr\r
                                                el = innerDialog.getChild( 5 );\r
-                                               el.setStyle( 'height', ( height + body.getChild(0).$.offsetHeight ) + 'px' );\r
+                                               el.setSize( 'height', height );\r
                                        };\r
                                setTimeout( fixSize, 100 );\r
 \r