mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Stop loading animation after 3sec if it didn't end for some reason
This commit is contained in:
parent
04819f2069
commit
21bcd39113
@ -70,9 +70,8 @@
|
||||
*/
|
||||
et2_loadingFinished: function() {
|
||||
this._super.apply(this, arguments);
|
||||
setTimeout(function(){jQuery('#egw_fw_firstload').remove()}, 1000);
|
||||
},
|
||||
|
||||
setTimeout(function(){jQuery('#egw_fw_firstload').remove();}, 1000);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
@ -86,6 +85,8 @@
|
||||
}
|
||||
|
||||
jQuery(document).ready(function() {
|
||||
//Stop the loading animation after 3sec if for whatever reason it didn't end
|
||||
setTimeout(function(){jQuery('#egw_fw_firstload').remove();}, 3000);
|
||||
window.framework = new fw_pixelegg("egw_fw_sidemenu", "egw_fw_tabs",
|
||||
window.egw_webserverUrl, egw_setSideboxSize,"egw_fw_splitter", 255, 245); // should be identical to jdots_framework::(DEFAULT|MIN)_SIDEBAR_WIDTH
|
||||
window.callManual = window.framework.callManual;
|
||||
|
Loading…
Reference in New Issue
Block a user