diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-08-26 17:21:23 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-08-26 17:21:23 -0400 |
commit | 6e7bd4d895930a181e98af22f36e6e823d1c0b5a (patch) | |
tree | 12d0eb977ffd6b76bac4dbcb2023771d744920ea /ui/jquery.ui.datepicker.js | |
parent | 767af39f7f415e984cbac75dd5b59bcd7f52f782 (diff) | |
download | jquery-ui-6e7bd4d895930a181e98af22f36e6e823d1c0b5a.tar.gz jquery-ui-6e7bd4d895930a181e98af22f36e6e823d1c0b5a.zip |
Revert "Datepicker: Modified _updateDatepicker to not update display if updated instance is not current instance." This revert fixes a more serious problem: Fixes #8522 - Calendar doesn't render when moving between datepicker controls.
This reverts commit b4ef2f7ebb1162f75d8fa3276d73e4746bcace84.
Diffstat (limited to 'ui/jquery.ui.datepicker.js')
-rw-r--r-- | ui/jquery.ui.datepicker.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/jquery.ui.datepicker.js b/ui/jquery.ui.datepicker.js index cd4ffe3ee..f72b15d1f 100644 --- a/ui/jquery.ui.datepicker.js +++ b/ui/jquery.ui.datepicker.js @@ -708,9 +708,6 @@ $.extend(Datepicker.prototype, { /* Generate the date picker content. */ _updateDatepicker: function(inst) { - if ($.datepicker._curInst && inst != $.datepicker._curInst) { - return; - } this.maxRows = 4; //Reset the max number of rows being displayed (see #7043) var borders = $.datepicker._getBorders(inst.dpDiv); instActive = inst; // for delegate hover events |