mirror of
https://github.com/openstf/stf
synced 2025-10-06 03:50:04 +02:00
10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
module.exports =
|
|
function ControlPanesNoDeviceController($location, SettingsService) {
|
|
var lastUsedDevice = SettingsService.get('lastUsedDevice')
|
|
|
|
if (lastUsedDevice) {
|
|
$location.path('/control/' + lastUsedDevice)
|
|
} else {
|
|
$location.path('/')
|
|
}
|
|
}
|