Fix selectAll for angular upgrade

This commit is contained in:
James Allen 2015-06-29 13:43:34 +01:00
parent 0eec715bb5
commit c75cdf24b5

View file

@ -5,20 +5,14 @@ define [
return { return {
controller: ["$scope", ($scope) -> controller: ["$scope", ($scope) ->
# Selecting or deselecting all should apply to all projects # Selecting or deselecting all should apply to all projects
selectAll = () -> @selectAll = () ->
$scope.$broadcast "select-all:select" $scope.$broadcast "select-all:select"
deselectAll = () -> @deselectAll = () ->
$scope.$broadcast "select-all:deselect" $scope.$broadcast "select-all:deselect"
clearSelectAllState = () -> @clearSelectAllState = () ->
$scope.$broadcast "select-all:clear" $scope.$broadcast "select-all:clear"
return {
clearSelectAllState: clearSelectAllState
selectAll: selectAll
deselectAll: deselectAll
}
] ]
link: (scope, element, attrs) -> link: (scope, element, attrs) ->