Skip to content

Commit

Permalink
Buffer issues fied after a webMap switch
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsebastian committed Sep 2, 2015
1 parent f870334 commit 018037d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,11 @@ function (declare, connect, Deferred,_WidgetsInTemplateMixin, BaseWidget, Graphi
}
},
_toggleLoading: function (state) {
state ? this._busyLoader.show() : this._busyLoader.hide();
if (state) {
try { this._busyLoader.show() } catch (e) { };//ie fix for _busyLoader
} else {
try { this._busyLoader.hide() } catch (e) { };//ie fix for _busyLoader
}
},
_showErrorMessage: function (msg) {
var popup = new Message({
Expand Down

0 comments on commit 018037d

Please sign in to comment.