Remove unused function

This commit is contained in:
Johannes Zellner
2019-04-15 14:36:15 +02:00
parent 07d4d5051a
commit 3edb119422

View File

@@ -20,12 +20,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
$scope.spacesSuffix = '';
$scope.disableIndexingTemplate = '# Disable search engine indexing\n\nUser-agent: *\nDisallow: /';
$scope.toggleTag = function (tag) {
var pos = $scope.selectedTags.indexOf(tag);
if (pos !== -1) $scope.selectedTags.splice(pos, 1);
else $scope.selectedTags.push(tag);
};
$scope.appConfigure = {
busy: false,
error: {},