Skip to content

Commit

Permalink
Datepicker - Fixed incorrect semi-colon that should have been a comma…
Browse files Browse the repository at this point in the history
…. Fixes #6916 - Datepicker date range demo: syntax glitch.
  • Loading branch information
scottgonzalez committed Jan 30, 2011
1 parent a1ab967 commit fe6990e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/datepicker/date-range.html
Expand Up @@ -17,7 +17,7 @@
numberOfMonths: 3,
onSelect: function( selectedDate ) {
var option = this.id == "from" ? "minDate" : "maxDate",
instance = $( this ).data( "datepicker" );
instance = $( this ).data( "datepicker" ),
date = $.datepicker.parseDate(
instance.settings.dateFormat ||
$.datepicker._defaults.dateFormat,
Expand Down

0 comments on commit fe6990e

Please sign in to comment.