summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-11 20:33:59 +0300
committerAndrew Dolgov <[email protected]>2010-11-11 20:33:59 +0300
commitce40b580618988892147a696fdaa15164c7e7397 (patch)
tree329827893ad32dd066955688c6ed1aa92cab8e88 /functions.js
parent0ce338f3cdeff94f5a75968508f690d9d69dc943 (diff)
disable localStorage for now
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/functions.js b/functions.js
index 56285b731..6da8dc807 100644
--- a/functions.js
+++ b/functions.js
@@ -2191,11 +2191,12 @@ function backend_sanity_check_callback(transport) {
}
function has_local_storage() {
- try {
+ return false;
+/* try {
return 'localStorage' in window && window['localStorage'] != null;
} catch (e) {
return false;
- }
+ } */
}
function catSelectOnChange(elem) {