From 5e69a453a2fcb79f05a0347fcc98e6db78cd0e6e Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Wed, 25 Jul 2018 20:57:51 +0200 Subject: [PATCH] added TODO comment for jquery calls --- js/controller/BoardController.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/controller/BoardController.js b/js/controller/BoardController.js index 398a58632..d8b4c16b7 100644 --- a/js/controller/BoardController.js +++ b/js/controller/BoardController.js @@ -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) {