Merge "registration: Only allow one extension to set a specific config setting"
[lhc/web/wiklou.git] / resources / lib / jquery.ui / jquery.ui.datepicker.js
index cd5d490..15982fd 100644 (file)
@@ -783,7 +783,7 @@ $.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))) {
+               while (obj && (obj.type == 'hidden' || obj.nodeType != 1 || $.expr.pseudos.hidden(obj))) {
                        obj = obj[isRTL ? 'previousSibling' : 'nextSibling'];
                }
                var position = $(obj).offset();