aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.datepicker.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-03-18 08:26:08 -0400
committerScott González <scott.gonzalez@gmail.com>2011-03-18 08:26:08 -0400
commit6d0164571647e169c9674a2853f3223caf188e7e (patch)
tree06bf2826719645a5fea74d7b0d9e742576352b90 /ui/jquery.ui.datepicker.js
parent5a112d4e03b4c1073e2136b83ed8316c13eaa536 (diff)
downloadjquery-ui-6d0164571647e169c9674a2853f3223caf188e7e.tar.gz
jquery-ui-6d0164571647e169c9674a2853f3223caf188e7e.zip
Datepicker: Changed a comment that causes problems with YUI Compressor. Fixes #7129 - Datepicker: Can't minify with YUI Compressor.
Diffstat (limited to 'ui/jquery.ui.datepicker.js')
-rw-r--r--ui/jquery.ui.datepicker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.datepicker.js b/ui/jquery.ui.datepicker.js
index 670955f64..ed02335e5 100644
--- a/ui/jquery.ui.datepicker.js
+++ b/ui/jquery.ui.datepicker.js
@@ -1093,7 +1093,7 @@ $.extend(Datepicker.prototype, {
}
var date = this._daylightSavingAdjust(new Date(year, month - 1, day));
if (date.getFullYear() != year || date.getMonth() + 1 != month || date.getDate() != day)
- throw 'Invalid date'; // E.g. 31/02/*
+ throw 'Invalid date'; // E.g. 31/02/00
return date;
},