1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/control-panes/control-panes-no-device-controller.js
Gunther Brunner dbfbe53b37 Finally Control button is implemented.
Also the route /control tries to use the last used device.
2014-09-11 18:15:16 +09:00

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('/')
}
}