Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove code which uses no longer defined event
  • Loading branch information
kieckhafer committed Mar 14, 2017
commit aa9399bdd9c3e069c6684e7ace7df328a31e1a11
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ Template.productGrid.onCreated(function () {
if (_.isEmpty(selectedProducts)) {
Reaction.hideActionView();
} else {
if (event.target.checked) {
selectedProducts.push(event.target.value);
} else {
selectedProducts = _.without(selectedProducts, event.target.value);
}

// Save the selected items to the Session
Session.set("productGrid/selectedProducts", _.uniq(selectedProducts));

Expand Down