Add ADB Key modal.

This commit is contained in:
Gunther Brunner
2014-09-29 19:57:30 +09:00
parent 6b1a2700bd
commit 9f0affaafd
6 changed files with 102 additions and 4 deletions

View File

@@ -1,4 +1,9 @@
module.exports = function AdbKeysCtrl($scope, AdbKeysService) {
module.exports = function AdbKeysCtrl($scope, AddAdbKeyModalService) {
//AddAdbKeyModalService.open({
// title: 'PC1264',
// fingerprint: 'bb:86:60:39:d7:a2:e3:09:93:09:cc:f6:e8:37:99:3f'
//})
$scope.adbKeys = [
{
@@ -16,6 +21,4 @@ module.exports = function AdbKeysCtrl($scope, AdbKeysService) {
$scope.adbKeys.splice($scope.adbKeys.indexOf(key), 1)
}
}