copay/js/controllers/unsupported.js

10 lines
213 B
JavaScript
Raw Normal View History

2014-10-09 13:11:53 -07:00
'use strict';
angular.module('copayApp.controllers').controller('UnsupportedController',
function($scope, $location) {
if (localStorage && localStorage.length > 0) {
$location.path('/');
}
}
);