Skip to content
Snippets Groups Projects
Commit 25e4a071 authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

fixed: this.routes_request is a deferred/promise

parent e642d18e
Branches
No related tags found
No related merge requests found
......@@ -4,11 +4,7 @@ OC.Router = {
// register your ajax requests to load after the loading of the routes
// has finished. otherwise you face problems with race conditions
registerLoadedCallback: function(callback){
if(this.routes_request.state() === 'resolved'){
callback();
} else {
this.loadedCallback = callback;
}
this.routes_request.done(callback);
},
routes_request: $.ajax(OC.router_base_url + 'core/routes.json', {
dataType: 'json',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment