summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-07-08 14:47:49 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-07-08 14:47:49 -0400
commit11dde6c44bbb39e88969eb1691cfcf9e21f5ad08 (patch)
tree89098ffe15c6998bc652623b07ff7861efb6a4a5 /web/react/utils/utils.jsx
parenta65b2a2df52286ec4018b923971366f89b917307 (diff)
parentce5639a6290bcb2403376cabfffe784283ac5b5a (diff)
downloadchat-11dde6c44bbb39e88969eb1691cfcf9e21f5ad08.tar.gz
chat-11dde6c44bbb39e88969eb1691cfcf9e21f5ad08.tar.bz2
chat-11dde6c44bbb39e88969eb1691cfcf9e21f5ad08.zip
Merge pull request #150 from mattermost/mm-895
MM-895 Reorganization of browser storage.
Diffstat (limited to 'web/react/utils/utils.jsx')
-rw-r--r--web/react/utils/utils.jsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index e6c460959..5ded0e76f 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -97,20 +97,6 @@ module.exports.getCookie = function(name) {
if (parts.length == 2) return parts.pop().split(";").shift();
}
-module.exports.isLocalStorageSupported = function() {
- try {
- sessionStorage.setItem("testSession", '1');
- sessionStorage.removeItem("testSession");
-
- localStorage.setItem("testLocal", '1');
- localStorage.removeItem("testLocal", '1');
-
- return true;
- }
- catch (e) {
- return false;
- }
-}
module.exports.notifyMe = function(title, body, channel) {
if ("Notification" in window && Notification.permission !== 'denied') {