copay/js/controllers/unsupported.js

10 lines
213 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('UnsupportedController',
function($scope, $location) {
if (localStorage && localStorage.length > 0) {
$location.path('/');
}
}
);