Group terminal/logs/filemanager toolbar buttons

This commit is contained in:
Johannes Zellner
2021-04-07 10:36:01 +02:00
parent ab1d3f41fa
commit 36df6b9e1e
4 changed files with 7 additions and 57 deletions

View File

@@ -73,21 +73,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
}
};
$scope.appInfo = {
app: {},
message: '',
show: function (app) {
$scope.appInfo.app = app;
$scope.appInfo.message = app.manifest.postInstallMessage;
$('#appinfoPostinstallMessage').collapse('hide');
$('#appInfoModal').modal('show');
return false; // prevent propagation and default
}
};
$scope.showAppConfigure = function (app, view) {
$location.path('/app/' + app.id + '/' + view);
};