blob: 398202af2c8b6b77c4490c42a062bd12c877b64d [file] [log] [blame]
module.exports =
function ControlPanesNoDeviceController($location, SettingsService) {
var lastUsedDevice = SettingsService.get('lastUsedDevice')
if (lastUsedDevice) {
$location.path('/control/' + lastUsedDevice)
} else {
$location.path('/')
}
}