mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:53:23 +02:00
18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
module.exports = function MenuCtrl($scope, $rootScope, SettingsService,
|
|
$location) {
|
|
|
|
SettingsService.bind($scope, {
|
|
target: 'lastUsedDevice'
|
|
})
|
|
|
|
SettingsService.bind($rootScope, {
|
|
target: 'platform',
|
|
defaultValue: 'native'
|
|
})
|
|
|
|
$scope.$on('$routeChangeSuccess', function() {
|
|
$scope.isControlRoute = $location.path().search('/control') !== -1
|
|
})
|
|
|
|
}
|