diff --git a/js/routes.js b/js/routes.js index 426862a4e..62b47ec37 100644 --- a/js/routes.js +++ b/js/routes.js @@ -82,7 +82,7 @@ angular .run(function($rootScope, $location, $idle) { $idle.watch(); $rootScope.$on('$routeChangeStart', function(event, next, current) { - if (!util.supports.data) { + if (!localStorage || localStorage.length < 1) { $location.path('unsupported'); } else { if ((!$rootScope.wallet || !$rootScope.wallet.id) && next.validate) { diff --git a/views/unsupported.html b/views/unsupported.html index b4c52b634..17b8e478e 100644 --- a/views/unsupported.html +++ b/views/unsupported.html @@ -5,14 +5,14 @@

Browser unsupported

- Copay uses webRTC for peer-to-peer communications, + Copay uses WebStorage to save wallet data, but your browser does not support it. Please use - a current version of Google Chrome, Mozilla Firefox, or Opera. + a current version of Internet Explorer, Safari, Google Chrome, Mozilla Firefox, or Opera.

- For more information - on supported browsers please check http://www.webrtc.org/ + Check if your browser support WebStorage here