Skip to content

Commit f00cbe8

Browse files
author
Darksider
committed
Modules/store/js: Fix minor bug to prevent errors reaching the console
1 parent 9c630dd commit f00cbe8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

application/modules/store/js/store.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,6 @@ var Store = {
682682
{
683683
$(this).attr("data-available", "0");
684684
Store.Cart.list[i].character = $(this).val();
685-
console.log(Store.Cart.list[i].character)
686685
}
687686
});
688687
}
@@ -706,7 +705,7 @@ var Store = {
706705
Store.Cart.dpCost = 0;
707706
Store.Cart.count = 0;
708707

709-
Store.updatePrice();
708+
Store.Cart.updatePrice();
710709
$("#cart_item_count").html('0');
711710
});
712711
});

0 commit comments

Comments
 (0)