5105: Better assertion for tab-loading error display.
[arvados.git] / apps / workbench / app / assets / javascripts / application.js
index 8d929676ad7ec2fb111eae4e81581b9bb88a3761..63887b3ab970f3d75f4035169790e05752ea15a8 100644 (file)
@@ -238,16 +238,3 @@ function hideLoadingModal() {
 function hasHTML5History() {
     return !!(window.history && window.history.pushState);
 }
-
-function invokeUrlWithLocalStorageValue(url, alias, item) {
-    value = localStorage.getItem(item);
-    if (value) {
-      window.location = alias;
-    } else {
-      window.location = url;
-    }
-}
-
-function clearLocalStorageValue(item) {
-    localStorage.removeItem(item);
-}