mirror of
https://github.com/openstf/stf
synced 2025-10-04 10:19:30 +02:00
11 lines
288 B
JavaScript
11 lines
288 B
JavaScript
module.exports = function DeviceScreenCtrl($scope, ScalingService) {
|
|
$scope.ready = false
|
|
$scope.displayError = false
|
|
$scope.canView = true
|
|
$scope.showScreen = true
|
|
$scope.ScalingService = ScalingService
|
|
|
|
$scope.device.promise.then(function() {
|
|
$scope.ready = true
|
|
})
|
|
}
|