summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-02 23:15:37 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-02 23:15:37 +0100
commite1030c6b5f8775ad4aac13659757cd6cc3cd441b (patch)
treefdd8862dad408b8ba7a1dbbe6c371ad2a3b18c62 /core
parent1291303c5a312fad9f01fbaf22cc21e3b9b3675d (diff)
downloadnextcloud-server-e1030c6b5f8775ad4aac13659757cd6cc3cd441b.tar.gz
nextcloud-server-e1030c6b5f8775ad4aac13659757cd6cc3cd441b.zip
adding JSDoc + remove unused function
Diffstat (limited to 'core')
-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);