1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-09-07 18:07:29 +03:00

Converted tag manager to be fully vue based

This commit is contained in:
Dan Brown
2017-08-13 11:50:40 +01:00
parent f338dbe3f8
commit b023699f1b
3 changed files with 13 additions and 27 deletions

View File

@@ -145,23 +145,6 @@ module.exports = function (ngApp, events) {
}]);
ngApp.controller('PageTagController', ['$scope', '$http', '$attrs',
function ($scope, $http, $attrs) {
const pageId = Number($attrs.pageId);
$scope.tags = [];
$scope.sortOptions = {
handle: '.handle',
items: '> tr',
containment: "parent",
axis: "y"
};
// TODO - Delete
}]);
ngApp.controller('PageAttachmentController', ['$scope', '$http', '$attrs',
function ($scope, $http, $attrs) {