mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
12 lines
336 B
JavaScript
12 lines
336 B
JavaScript
module.exports = function MenuCtrl($scope, $rootScope, SettingsService, $location) {
|
|
$rootScope.platform = 'native'
|
|
SettingsService.bind($rootScope, {
|
|
key: 'platform',
|
|
storeName: 'Platform'
|
|
})
|
|
|
|
$scope.$on('$routeChangeSuccess', function () {
|
|
$scope.isControlRoute = $location.path().search('/control') !== -1
|
|
})
|
|
}
|