summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js')
-rw-r--r--core/js/js.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 80d83dc07f9..77aadd23e03 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -195,6 +195,13 @@ var OC={
return OC.webroot + '/remote.php/' + service;
},
+ /**
+ * Generates the absolute url for the given relative url, which can contain parameters.
+ *
+ * @returns {string}
+ * @param {string} url
+ * @param params
+ */
generateUrl: function(url, params) {
var _build = function (text, vars) {
return text.replace(/{([^{}]*)}/g,
@@ -211,10 +218,6 @@ var OC={
return OC.webroot + '/index.php' + _build(url, params);
},
- linkToRoute:function(route) {
- return OC.webroot + '/index.php/' + route;
- },
-
/**
* @brief Creates an absolute url for remote use
* @param string $service id
@@ -812,7 +815,7 @@ function initCore() {
if (interval < 60) {
interval = 60;
}
- var url = OC.linkToRoute('heartbeat');
+ var url = OC.generateUrl('/heartbeat');
setInterval(function(){
$.post(url);
}, interval * 1000);