Add ADB Keys tab.

This commit is contained in:
Gunther Brunner
2014-09-25 20:03:16 +09:00
parent 0ddc1eb0b0
commit 66cbfe0c3c
21 changed files with 160 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
module.exports = function SettingsCtrl($scope, gettext) {
$scope.settingTabs = [
{
title: gettext('General'),
icon: 'fa-gears fa-fw',
templateUrl: 'settings/general/general.jade'
},
{
title: gettext('ADB Keys'),
icon: 'fa-key fa-fw',
templateUrl: 'settings/adb-keys/adb-keys.jade'
}
]
}