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,10 @@
module.exports = angular.module('stf-ui-language', [
require('stf/settings').name,
require('stf/language').name
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put(
'settings/general/language/language.jade', require('./language.jade')
)
}])
.controller('LanguageCtrl', require('./language-controller'))