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,9 @@
module.exports = function ($scope, LanguageService, SettingsService) {
SettingsService.bind($scope, {
target: 'language'
, source: LanguageService.settingKey
, defaultValue: LanguageService.detectedLanguage
})
$scope.supportedLanguages = LanguageService.supportedLanguages
}