mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-21 10:27:52 +02:00
Keep loading prompt up until there's events too
This commit is contained in:
parent
b18d7a407b
commit
e7371b0d66
@ -2828,6 +2828,8 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
|||||||
if(!multiple_owner) break;
|
if(!multiple_owner) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
egw.loading_prompt(this.appname,false);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -3280,7 +3282,13 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
|||||||
{
|
{
|
||||||
$j(window).trigger('resize');
|
$j(window).trigger('resize');
|
||||||
this.setState({state:this.state});
|
this.setState({state:this.state});
|
||||||
|
|
||||||
|
// Hide loader after 1 second as a fallback, it will also be hidden
|
||||||
|
// after loading is complete.
|
||||||
|
window.setTimeout(jQuery.proxy(function() {
|
||||||
egw.loading_prompt(this.appname,false);
|
egw.loading_prompt(this.appname,false);
|
||||||
|
}, this),1000);
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user