Skip to content

Commit

Permalink
VP-2481: Fix "select all" checkbox at customerOrder-items-select blade
Browse files Browse the repository at this point in the history
  • Loading branch information
akak1977 committed Jun 17, 2020
1 parent 1b6679d commit 67d6d2b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ angular.module('virtoCommerce.orderModule')
}
];

$scope.checkAll = function (selected) {
angular.forEach($scope.items, function (item) {
item.selected = selected;
});
};

blade.refresh();

}]);

0 comments on commit 67d6d2b

Please sign in to comment.