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

Commit 73a2619

Browse files
committed
fix(calender): only using jQuery instead of $
Signed-off-by: Josh Kurz <jkurz25@gmail.com>
2 parents 970b066 + a1f65e6 commit 73a2619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/calendar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ angular.module('ui.calendar', [])
289289
};
290290

291291
eventsWatcher.onChanged = function(event) {
292-
event._start = $.fullCalendar.moment(event.start);
293-
event._end = $.fullCalendar.moment(event.end);
292+
event._start = jQuery.fullCalendar.moment(event.start);
293+
event._end = jQuery.fullCalendar.moment(event.end);
294294
calendar.fullCalendar('updateEvent', event);
295295
};
296296

0 commit comments

Comments
 (0)