Update disclaimer.html

Update disclaimer.js

Update disclaimer.html

Update indent style
This commit is contained in:
Kirvx 2015-09-16 02:20:45 +02:00
commit e73d768ef8
2 changed files with 36 additions and 30 deletions

View file

@ -25,4 +25,12 @@ angular.module('copayApp.controllers').controller('disclaimerController',
});
}, 100);
};
$scope.init = function() {
storageService.getCopayDisclaimerFlag(function(err, val) {
$scope.agreed = val;
$timeout(function() {
$scope.$digest();
}, 1);
});
};
});