mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-09-12 12:21:04 +08:00
put view arg in loading callback (issue 1018)
This commit is contained in:
+2
-2
@@ -333,14 +333,14 @@ function EventManager(options, _sources) {
|
||||
|
||||
function pushLoading() {
|
||||
if (!loadingLevel++) {
|
||||
trigger('loading', null, true);
|
||||
trigger('loading', null, true, getView());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function popLoading() {
|
||||
if (!--loadingLevel) {
|
||||
trigger('loading', null, false);
|
||||
trigger('loading', null, false, getView());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user