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.

(cherry picked from commit fe6990e)
  • Loading branch information
scottgonzalez committed Jan 30, 2011
1 parent 6b9b513 commit d4e715f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/datepicker/date-range.html
Original file line number Diff line number Diff line change
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 d4e715f

Please sign in to comment.