diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-06-07 15:14:48 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-06-07 15:14:48 +0000 |
commit | 5414f32e2f12c05dae7ab2a1958e269e568dfcf8 (patch) | |
tree | a9584c4837e965887fc7e08aa6d208e0ffd7aef0 | |
parent | fd8905bcd217ad617f3f28e2a8125697b15d2d2f (diff) | |
download | jquery-ui-5414f32e2f12c05dae7ab2a1958e269e568dfcf8.tar.gz jquery-ui-5414f32e2f12c05dae7ab2a1958e269e568dfcf8.zip |
datepicker: missing changes from theming
-rw-r--r-- | ui/source/ui.datepicker.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/source/ui.datepicker.js b/ui/source/ui.datepicker.js index cb3b4a769..c1f1b3c4d 100644 --- a/ui/source/ui.datepicker.js +++ b/ui/source/ui.datepicker.js @@ -1271,7 +1271,7 @@ $.extend(DatepickerInstance.prototype, { else { var inMinYear = (minDate && minDate.getFullYear() == drawYear); var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear); - html += '<select class="ui-datepicker-newMonth" ' + + html += '<select class="ui-datepicker-new-month" ' + 'onchange="jQuery.datepicker._selectMonthYear(' + this._id + ', this, \'M\');" ' + 'onclick="jQuery.datepicker._clickMonthYear(' + this._id + ');"' + (showStatus ? this._addStatus(this._get('monthStatus') || ' ') : '') + '>'; @@ -1305,7 +1305,7 @@ $.extend(DatepickerInstance.prototype, { } year = (minDate ? Math.max(year, minDate.getFullYear()) : year); endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear); - html += '<select class="ui-datepicker-newYear" ' + + html += '<select class="ui-datepicker-new-year" ' + 'onchange="jQuery.datepicker._selectMonthYear(' + this._id + ', this, \'Y\');" ' + 'onclick="jQuery.datepicker._clickMonthYear(' + this._id + ');"' + (showStatus ? this._addStatus(this._get('yearStatus') || ' ') : '') + '>'; |