]> source.dussan.org Git - nextcloud-server.git/commitdiff
adding JSDoc + remove unused function
authorThomas Müller <thomas.mueller@tmit.eu>
Sun, 2 Mar 2014 22:15:37 +0000 (23:15 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Sun, 2 Mar 2014 22:15:37 +0000 (23:15 +0100)
core/js/js.js

index 80d83dc07f9b25e3ff55e517f522f15fff426bd8..77aadd23e03f59bd82da9e16fea5b400d8cd80a0 100644 (file)
@@ -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);