You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Storage.prototype.setItem=function(){};// make it a NOP
115
+
alert('Your web browser does not support storing settings locally. In Safari, the most common cause of this is using "Private Browsing Mode". Some features may not work properly for you.');
116
+
}
117
+
}
118
+
103
119
if(supports_html5_storage()){
104
120
// generate a unique UUID per "user" (as indicated by a single browser
105
121
// instance on a user's machine, which can be more precise than IP
Storage.prototype.setItem=function(){};// make it a NOP
132
-
alert('Your web browser does not support storing settings locally. In Safari, the most common cause of this is using "Private Browsing Mode". Some features may not work properly for you.');
133
-
}
134
-
}
135
120
136
121
// first initialize options from HTML LocalStorage. very important
137
122
// that this code runs FIRST so that options get overridden by query
138
123
// string options and anything else the user wants to override with.
139
-
//
140
-
// super hacky using window.optOverride global -- if that's in
141
-
// effect, then don't load/save from HTML5 storage so that we don't
0 commit comments