removes unused params

This commit is contained in:
Shannon
2019-02-28 17:18:47 +10:00
parent 28034d664e
commit 3e4ff05d37
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
* @description
* The controller for deleting content
*/
function DataTypeDeleteController($scope, $location, dataTypeResource, treeService, navigationService, appState) {
function DataTypeDeleteController($scope, dataTypeResource, treeService, navigationService) {
$scope.performDelete = function() {

View File

@@ -6,7 +6,7 @@
* @description
* The controller for deleting macro items
*/
function MacrosDeleteController($scope, $location, macroResource, navigationService, treeService, appState) {
function MacrosDeleteController($scope, macroResource, navigationService, treeService) {
var vm = this;
vm.name = $scope.currentNode.name;

View File

@@ -6,7 +6,7 @@
* @description
* The controller for the media type delete dialog
*/
function MediaTypesDeleteController($scope, $location, dataTypeResource, mediaTypeResource, treeService, navigationService, appState) {
function MediaTypesDeleteController($scope, mediaTypeResource, treeService, navigationService) {
$scope.performDelete = function() {