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

Commit 568e431

Browse files
committed
resolve conflict and merge
2 parents 19b26cf + af6b476 commit 568e431

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/calendar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,15 +273,15 @@ angular.module('ui.calendar', [])
273273
calendar.fullCalendar('destroy');
274274
}
275275
if (attrs.calendar) {
276-
calendar = uiCalendarConfig.calendars[attrs.calendar] = $(elm).html('');
276+
calendar = uiCalendarConfig.calendars[attrs.calendar] = angular.element(elm).html('');
277277
} else {
278-
calendar = $(elm).html('');
278+
calendar = angular.element(elm).html('');
279279
}
280280
};
281281

282282
scope.initCalendar = function () {
283283
if (!calendar) {
284-
calendar = $(elm).html('');
284+
calendar = angular.element(elm).html('');
285285
}
286286
calendar.fullCalendar(options);
287287
if (attrs.calendar) {
@@ -362,4 +362,4 @@ angular.module('ui.calendar', [])
362362
};
363363
}
364364
]
365-
);
365+
);

0 commit comments

Comments
 (0)