diff --git a/src/views/apps.html b/src/views/apps.html
index 3754a545d..f9a1e2f81 100644
--- a/src/views/apps.html
+++ b/src/views/apps.html
@@ -120,44 +120,6 @@
-
-
@@ -301,7 +263,6 @@
diff --git a/src/views/apps.js b/src/views/apps.js
index 2da163c4e..863d751f3 100644
--- a/src/views/apps.js
+++ b/src/views/apps.js
@@ -179,11 +179,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
}
};
- $scope.appInfo = {
- app: {},
- message: ''
- };
-
$scope.appPostInstallConfirm = {
app: {},
message: '',
@@ -263,7 +258,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
$('#appErrorModal').modal('hide');
$('#appRestoreModal').modal('hide');
$('#appUpdateModal').modal('hide');
- $('#appInfoModal').modal('hide');
$('#appPostInstallConfirmModal').modal('hide');
// reset update dialog
@@ -288,18 +282,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
$scope.appPostInstallConfirm.confirmed = false;
};
-
- $scope.showInformation = function (app) {
- $scope.reset();
-
- $scope.appInfo.app = app;
- $scope.appInfo.message = app.manifest.postInstallMessage;
-
- $('#appInfoModal').modal('show');
-
- return false; // prevent propagation and default
- };
-
$scope.renderAccessRestrictionUser = function (userId) {
var user = $scope.users.filter(function (u) { return u.id === userId; })[0];
@@ -376,7 +358,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
});
// setup all the dialog focus handling
- ['appUpdateModal', 'appRestoreModal', 'appInfoModal', 'appErrorModal'].forEach(function (id) {
+ ['appUpdateModal', 'appRestoreModal', 'appErrorModal'].forEach(function (id) {
$('#' + id).on('shown.bs.modal', function () {
$(this).find("[autofocus]:first").focus();
});