Fix some code style issues
This commit is contained in:
@@ -64,15 +64,15 @@ app.controller('CardController', function ($scope, $rootScope, $routeParams, $lo
|
||||
$scope.cardUpdate = function(card) {
|
||||
CardService.update(CardService.getCurrent()).then(function(data) {
|
||||
$scope.status.cardEditDescription = false;
|
||||
$('#card-description .save-indicator').fadeIn(500).fadeOut(1000);
|
||||
$('#card-description').find('.save-indicator').fadeIn(500).fadeOut(1000);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
$scope.labelAssign = function(element, model) {
|
||||
CardService.assignLabel($scope.cardId, element.id);
|
||||
var card = CardService.getCurrent();
|
||||
StackService.updateCard(card);
|
||||
}
|
||||
};
|
||||
|
||||
$scope.labelRemove = function(element, model) {
|
||||
CardService.removeLabel($scope.cardId, element.id)
|
||||
|
||||
Reference in New Issue
Block a user