Skip to content

Commit

Permalink
CA-754 - added .in-range-hover
Browse files Browse the repository at this point in the history
  • Loading branch information
ebess committed Dec 10, 2015
1 parent f113a97 commit 5a57cd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daterangepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -1349,9 +1349,9 @@
var dt = cal.hasClass('left') ? leftCalendar.calendar[row][col] : rightCalendar.calendar[row][col];

if (dt.isAfter(startDate) && dt.isBefore(date)) {
$(el).addClass('in-range');
$(el).addClass('in-range in-range-hover');
} else {
$(el).removeClass('in-range');
$(el).removeClass('in-range in-range-hover');
}

});
Expand Down

0 comments on commit 5a57cd6

Please sign in to comment.