summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 4a7f2e643..10fafc447 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -69,15 +69,3 @@ require(["dojo/_base/kernel",
});
});
-/* exported hash_get */
-function hash_get(key) {
- const obj = dojo.queryToObject(window.location.hash.substring(1));
- return obj[key];
-}
-
-/* exported hash_set */
-function hash_set(key, value) {
- const obj = dojo.queryToObject(window.location.hash.substring(1));
- obj[key] = value;
- window.location.hash = dojo.objectToQuery(obj);
-}