]> source.dussan.org Git - nextcloud-server.git/commitdiff
removed unneeded callback checks in routes_request that could potentially fail
authorBernhard Posselt <nukeawhale@gmail.com>
Thu, 15 Nov 2012 14:07:01 +0000 (15:07 +0100)
committerBernhard Posselt <nukeawhale@gmail.com>
Thu, 15 Nov 2012 14:07:01 +0000 (15:07 +0100)
core/js/router.js

index 77168e33025c290d4c49af483929d41a83ebf9f7..3562785b3420ef01963ff39b74eccb20f5caa57c 100644 (file)
@@ -1,6 +1,5 @@
 OC.router_base_url = OC.webroot + '/index.php/',
 OC.Router = {
-       loadedCallback: null,
        // register your ajax requests to load after the loading of the routes
        // has finished. otherwise you face problems with race conditions
        registerLoadedCallback: function(callback){
@@ -11,9 +10,6 @@ OC.Router = {
                success: function(jsondata) {
                        if (jsondata.status === 'success') {
                                OC.Router.routes = jsondata.data;
-                               if(OC.Router.loadedCallback !== null){
-                                       OC.Router.loadedCallback();
-                               }
                        }
                }
        }),