mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
10 lines
239 B
JavaScript
10 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
|
|
})
|
|
}
|