Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
fix(calender): only using jQuery instead of $
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Kurz <[email protected]>
  • Loading branch information
joshkurz committed Apr 25, 2015
2 parents 970b066 + a1f65e6 commit 73a2619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ angular.module('ui.calendar', [])
};

eventsWatcher.onChanged = function(event) {
event._start = $.fullCalendar.moment(event.start);
event._end = $.fullCalendar.moment(event.end);
event._start = jQuery.fullCalendar.moment(event.start);
event._end = jQuery.fullCalendar.moment(event.end);
calendar.fullCalendar('updateEvent', event);
};

Expand Down

0 comments on commit 73a2619

Please sign in to comment.