diff --git a/src/EventManager.js b/src/EventManager.js index a171a39..59558d3 100644 --- a/src/EventManager.js +++ b/src/EventManager.js @@ -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()); } }