]> source.dussan.org Git - jquery-ui.git/commitdiff
Datepicker: Remove unused _getBorders() method.
authorScott González <scott.gonzalez@gmail.com>
Wed, 3 Apr 2013 20:19:39 +0000 (16:19 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 3 Apr 2013 20:19:39 +0000 (16:19 -0400)
ui/jquery.ui.datepicker.js

index 990c181a6f2a3e7ac0bb13f69ae1522398378291..976534c943e5e615284488dd18a8d8996a680e02 100644 (file)
@@ -823,18 +823,6 @@ $.extend(Datepicker.prototype, {
                }
        },
 
-       /* Retrieve the size of left and top borders for an element.
-        * @param  elem  (jQuery object) the element of interest
-        * @return  (number[2]) the left and top borders
-        */
-       _getBorders: function(elem) {
-               var convert = function(value) {
-                       return {thin: 1, medium: 2, thick: 3}[value] || value;
-               };
-               return [parseFloat(convert(elem.css("border-left-width"))),
-                       parseFloat(convert(elem.css("border-top-width")))];
-       },
-
        /* Check positioning to remain on screen. */
        _checkOffset: function(inst, offset, isFixed) {
                var dpWidth = inst.dpDiv.outerWidth(),