Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-28 21:02:26 +0400
committerBart Visscher <bartv@thisnet.nl>2013-02-28 21:02:26 +0400
commit294403fa99c745c6b7753b76996a253f0380c3a1 (patch)
tree18ad7727f3f7f714d27e71bb68f4345110127a28 /core
parent1cc7e6d31a0ed8a590543cfb44cf1f31799d3dde (diff)
The router base url is without / on the end
Diffstat (limited to 'core')
-rw-r--r--core/js/router.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/router.js b/core/js/router.js
index 3562785b342..b94721673a7 100644
--- a/core/js/router.js
+++ b/core/js/router.js
@@ -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') {