This commit is contained in:
Girish Ramakrishnan
2019-09-23 10:16:19 -07:00
parent acc20af2d9
commit 36299acbfb

View File

@@ -750,7 +750,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$location.path('/apps');
});
}
}
};
$scope.repair = {
busy: false,
@@ -827,7 +827,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$('#repairModal').modal('hide');
});
}
}
};
$scope.postInstallConfirm = {
message: '',
@@ -974,7 +974,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
// setup all the dialog focus handling
['appUninstallModal', 'appUpdateModal', 'appRestoreModal'].forEach(function (id) {
$('#' + id).on('shown.bs.modal', function () {
$(this).find("[autofocus]:first").focus();
$(this).find('[autofocus]:first').focus();
});
});