diff options
author | Trey Hunner <treyhunner@gmail.com> | 2012-02-27 08:48:17 -0800 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-02-27 12:04:30 -0500 |
commit | 9d6e94faf4030fd287120098d7395463d8acb698 (patch) | |
tree | 8c9614dccc8853778f6083f2cca517c1fc63b200 /ui/jquery.ui.datepicker.js | |
parent | 1d2fcaddadbb1ad313e3d7c5018f2fd9f31ce1e0 (diff) | |
download | jquery-ui-9d6e94faf4030fd287120098d7395463d8acb698.tar.gz jquery-ui-9d6e94faf4030fd287120098d7395463d8acb698.zip |
Use hard tabs for indentation consistently
Diffstat (limited to 'ui/jquery.ui.datepicker.js')
-rw-r--r-- | ui/jquery.ui.datepicker.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ui/jquery.ui.datepicker.js b/ui/jquery.ui.datepicker.js index 2a1699bd1..529032a99 100644 --- a/ui/jquery.ui.datepicker.js +++ b/ui/jquery.ui.datepicker.js @@ -628,7 +628,7 @@ $.extend(Datepicker.prototype, { }, /* Pop-up the date picker for a given input field. - If false returned from beforeShow event handler do not show. + If false returned from beforeShow event handler do not show. @param input element - the input field attached to the date picker or event - if triggered by focus */ _showDatepicker: function(input) { @@ -647,7 +647,7 @@ $.extend(Datepicker.prototype, { var beforeShow = $.datepicker._get(inst, 'beforeShow'); var beforeShowSettings = beforeShow ? beforeShow.apply(input, [input, inst]) : {}; if(beforeShowSettings === false){ - //false + //false return; } extendRemove(inst.settings, beforeShowSettings); @@ -785,11 +785,11 @@ $.extend(Datepicker.prototype, { _findPos: function(obj) { var inst = this._getInst(obj); var isRTL = this._get(inst, 'isRTL'); - while (obj && (obj.type == 'hidden' || obj.nodeType != 1 || $.expr.filters.hidden(obj))) { - obj = obj[isRTL ? 'previousSibling' : 'nextSibling']; - } - var position = $(obj).offset(); - return [position.left, position.top]; + while (obj && (obj.type == 'hidden' || obj.nodeType != 1 || $.expr.filters.hidden(obj))) { + obj = obj[isRTL ? 'previousSibling' : 'nextSibling']; + } + var position = $(obj).offset(); + return [position.left, position.top]; }, /* Hide the date picker from view. @@ -1784,7 +1784,7 @@ function isArray(a) { /* Invoke the datepicker functionality. @param options string - a command, optionally followed by additional parameters or - Object - settings for attaching new datepicker functionality + Object - settings for attaching new datepicker functionality @return jQuery object */ $.fn.datepicker = function(options){ |