added TODO comment for jquery calls
This commit is contained in:
@@ -214,11 +214,13 @@ app.controller('BoardController', function ($rootScope, $scope, $stateParams, St
|
|||||||
.then(
|
.then(
|
||||||
function() {StackService.updateCard(card);}
|
function() {StackService.updateCard(card);}
|
||||||
);
|
);
|
||||||
|
// TODO: remove this jquery call. Fix and use appPopoverMenuUtils instead
|
||||||
$('.popovermenu').addClass('hidden');
|
$('.popovermenu').addClass('hidden');
|
||||||
};
|
};
|
||||||
$scope.cardUnassignFromMe = function (card) {
|
$scope.cardUnassignFromMe = function (card) {
|
||||||
CardService.unassignUser(card, OC.getCurrentUser().uid);
|
CardService.unassignUser(card, OC.getCurrentUser().uid);
|
||||||
StackService.updateCard(card);
|
StackService.updateCard(card);
|
||||||
|
// TODO: remove this jquery call.Fix and use appPopoverMenuUtils instead
|
||||||
$('.popovermenu').addClass('hidden');
|
$('.popovermenu').addClass('hidden');
|
||||||
};
|
};
|
||||||
$scope.cardUnarchive = function (card) {
|
$scope.cardUnarchive = function (card) {
|
||||||
|
|||||||
Reference in New Issue
Block a user