diff options
author | Keith Wood <kbwood.au@gmail.com> | 2008-09-07 07:55:02 +0000 |
---|---|---|
committer | Keith Wood <kbwood.au@gmail.com> | 2008-09-07 07:55:02 +0000 |
commit | 0db0ffe5804e7abc7106ad9c527620c0c9309bbb (patch) | |
tree | 7bdbf9f65a5e4d51c83ad0b405c7342faec893d4 /ui | |
parent | eedbd524e22157a7430da60521903b64b9684183 (diff) | |
download | jquery-ui-0db0ffe5804e7abc7106ad9c527620c0c9309bbb.tar.gz jquery-ui-0db0ffe5804e7abc7106ad9c527620c0c9309bbb.zip |
Fixed 3267 Alternate field not updated when using "setDate"
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.datepicker.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/ui.datepicker.js b/ui/ui.datepicker.js index 841e71327..17b483281 100644 --- a/ui/ui.datepicker.js +++ b/ui/ui.datepicker.js @@ -447,6 +447,7 @@ $.extend(Datepicker.prototype, { if (inst) { this._setDate(inst, date, endDate); this._updateDatepicker(inst); + this._updateAlternate(inst); } }, |