removed unneeded callback checks in routes_request that could potentially fail
This commit is contained in:
parent
25e4a071ef
commit
defdbe3c10
|
@ -1,6 +1,5 @@
|
||||||
OC.router_base_url = OC.webroot + '/index.php/',
|
OC.router_base_url = OC.webroot + '/index.php/',
|
||||||
OC.Router = {
|
OC.Router = {
|
||||||
loadedCallback: null,
|
|
||||||
// register your ajax requests to load after the loading of the routes
|
// register your ajax requests to load after the loading of the routes
|
||||||
// has finished. otherwise you face problems with race conditions
|
// has finished. otherwise you face problems with race conditions
|
||||||
registerLoadedCallback: function(callback){
|
registerLoadedCallback: function(callback){
|
||||||
|
@ -11,9 +10,6 @@ OC.Router = {
|
||||||
success: function(jsondata) {
|
success: function(jsondata) {
|
||||||
if (jsondata.status === 'success') {
|
if (jsondata.status === 'success') {
|
||||||
OC.Router.routes = jsondata.data;
|
OC.Router.routes = jsondata.data;
|
||||||
if(OC.Router.loadedCallback !== null){
|
|
||||||
OC.Router.loadedCallback();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue