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