mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
module.exports = function DeviceScreenCtrl($scope, ScalingService) {
|
|
$scope.ready = false
|
|
$scope.displayError = false
|
|
$scope.ScalingService = ScalingService
|
|
|
|
$scope.promiseOfDevice.then(function () {
|
|
$scope.ready = true
|
|
})
|
|
}
|