mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
module.exports =
|
|
function ControlPanesNoDeviceController($location, SettingsService) {
|
|
var lastUsedDevice = SettingsService.get('lastUsedDevice')
|
|
|
|
if (lastUsedDevice) {
|
|
$location.path('/control/' + lastUsedDevice)
|
|
} else {
|
|
$location.path('/')
|
|
}
|
|
}
|