1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00

- Save platform.

This commit is contained in:
Gunther Brunner 2014-03-26 15:45:32 +09:00
parent a6aed5416f
commit 6306ba784f
3 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,7 @@
module.exports = function MenuCtrl($scope) {
module.exports = function MenuCtrl($scope, $rootScope, SettingsService) {
$rootScope.platform = 'web'
SettingsService.bind($rootScope, {
key: 'platform',
storeName: 'Platform'
})
}