JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.1
[ckeditor.git] / _source / plugins / tableresize / plugin.js
index 0ba8aad..891a7d9 100644 (file)
@@ -82,7 +82,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                        pillarIndex += td.$.colSpan || 1;\r
 \r
                        // Calculate the pillar boundary positions.\r
-                       var pillarLeft, pillarRight, pillarWidth, pillarPadding;\r
+                       var pillarLeft, pillarRight, pillarWidth;\r
 \r
                        var x = td.getDocumentPosition().x;\r
 \r
@@ -112,9 +112,6 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
 \r
                        pillarWidth = Math.max( pillarRight - pillarLeft, 3 );\r
 \r
-                       // Make the pillar touch area at least 14 pixels wide, for easy to use.\r
-                       pillarPadding = Math.max( Math.round( 7 - ( pillarWidth / 2 ) ), 0 );\r
-\r
                        // The pillar should reflects exactly the shape of the hovered\r
                        // column border line.\r
                        pillars.push( {\r
@@ -123,8 +120,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                x : pillarLeft,\r
                                y : tbodyPosition.y,\r
                                width : pillarWidth,\r
-                               height: tbody.$.offsetHeight,\r
-                               padding : pillarPadding,\r
+                               height : tbody.$.offsetHeight,\r
                                rtl : rtl } );\r
                }\r
 \r
@@ -135,10 +131,9 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
        {\r
                for ( var i = 0, len = pillars.length ; i < len ; i++ )\r
                {\r
-                       var pillar = pillars[ i ],\r
-                               pad = pillar.padding;\r
+                       var pillar = pillars[ i ];\r
 \r
-                       if ( positionX >= pillar.x - pad && positionX <= ( pillar.x + pillar.width + pad ) )\r
+                       if ( positionX >= pillar.x && positionX <= ( pillar.x + pillar.width ) )\r
                                return pillar;\r
                }\r
 \r
@@ -349,9 +344,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                        if ( !pillar )\r
                                return 0;\r
 \r
-                       var pad = pillar.padding;\r
-\r
-                       if ( !isResizing && ( posX < pillar.x - pad || posX > ( pillar.x + pillar.width + pad ) ) )\r
+                       if ( !isResizing && ( posX < pillar.x || posX > ( pillar.x + pillar.width ) ) )\r
                        {\r
                                detach();\r
                                return 0;\r