removing whitespaces

Signed-off-by: Ryan Fletcher <ryan.fletcher@codepassion.ca>
This commit is contained in:
Ryan Fletcher
2018-08-24 08:39:43 -04:00
committed by Julius Härtl
parent f1ebe01e5e
commit d17d0ec16f
2 changed files with 8 additions and 8 deletions

View File

@@ -125,7 +125,7 @@ app.controller('BoardController', function ($rootScope, $scope, $stateParams, St
$scope.filterData('-lastModified', $scope.searchText);
} else {
$scope.filterData('order', $scope.searchText);
}
}
};
$scope.checkCanEdit = function () {
return !BoardService.getCurrent().archived;
@@ -136,7 +136,7 @@ app.controller('BoardController', function ($rootScope, $scope, $stateParams, St
if ($scope.stacks === undefined) {
return;
}
angular.copy(StackService.getData(), $scope.stacks);
angular.copy(StackService.getData(), $scope.stacks);
$scope.stacks = $filter('orderBy')($scope.stacks, 'order');
angular.forEach($scope.stacks, function (value, key) {
var cards = $filter('cardSearchFilter')(value.cards, text);