added TODO comment for jquery calls

This commit is contained in:
Philippe Le Van
2018-07-25 20:57:51 +02:00
parent f25401e9fd
commit 5e69a453a2

View File

@@ -214,11 +214,13 @@ app.controller('BoardController', function ($rootScope, $scope, $stateParams, St
.then(
function() {StackService.updateCard(card);}
);
// TODO: remove this jquery call. Fix and use appPopoverMenuUtils instead
$('.popovermenu').addClass('hidden');
};
$scope.cardUnassignFromMe = function (card) {
CardService.unassignUser(card, OC.getCurrentUser().uid);
StackService.updateCard(card);
// TODO: remove this jquery call.Fix and use appPopoverMenuUtils instead
$('.popovermenu').addClass('hidden');
};
$scope.cardUnarchive = function (card) {