mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
module.exports = function MenuCtrl($scope, $rootScope, SettingsService) {
|
|
$rootScope.platform = 'web'
|
|
SettingsService.bind($rootScope, {
|
|
key: 'platform',
|
|
storeName: 'Platform'
|
|
})
|
|
}
|