]> source.dussan.org Git - nextcloud-server.git/commitdiff
The router base url is without / on the end
authorBart Visscher <bartv@thisnet.nl>
Thu, 28 Feb 2013 17:02:26 +0000 (18:02 +0100)
committerBart Visscher <bartv@thisnet.nl>
Thu, 28 Feb 2013 17:02:26 +0000 (18:02 +0100)
core/js/router.js

index 3562785b3420ef01963ff39b74eccb20f5caa57c..b94721673a73c879156bf3f45b9e4d27524b5738 100644 (file)
@@ -1,11 +1,11 @@
-OC.router_base_url = OC.webroot + '/index.php/',
+OC.router_base_url = OC.webroot + '/index.php',
 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){
                this.routes_request.done(callback);
        },
-       routes_request: $.ajax(OC.router_base_url + 'core/routes.json', {
+       routes_request: $.ajax(OC.router_base_url + '/core/routes.json', {
                dataType: 'json',
                success: function(jsondata) {
                        if (jsondata.status === 'success') {