diff --git a/build/js/IFrame.js b/build/js/IFrame.js index 93f335f2a..993d070f4 100644 --- a/build/js/IFrame.js +++ b/build/js/IFrame.js @@ -108,12 +108,12 @@ class IFrame { $loadingScreen.fadeIn() $(`${tabId} iframe`).ready(() => { if (typeof this._config.loadingScreen === 'number') { - this.switchTab(`#${navId}`, this._config.loadingScreen) + this.switchTab(`#${navId}`) setTimeout(() => { $loadingScreen.fadeOut() }, this._config.loadingScreen) } else { - this.switchTab(`#${navId}`, this._config.loadingScreen) + this.switchTab(`#${navId}`) $loadingScreen.fadeOut() } })