Commit 543c74e5790776e111fa29883e443a5a5cf009b0
1 parent
3f2adace
Exists in
master
and in
111 other branches
defer for empty catalog popup
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
js/app/controllers/InteractiveModule.js
... | ... | @@ -134,7 +134,7 @@ Ext.define('amdaDesktop.InteractiveModule', { |
134 | 134 | show: function() { |
135 | 135 | // configuration of empty catalog |
136 | 136 | if (this.isOperationOnShow) |
137 | - this.operationOnShow(); | |
137 | + Ext.Function.defer(this.operationOnShow, 2000, this); | |
138 | 138 | if (onShowEvent) |
139 | 139 | onShowEvent(); |
140 | 140 | } |
... | ... |