[FIX] website_sale: delete console.log

Delete console.log introduced by 4d7671a4c3
This commit is contained in:
Goffin Simon 2015-07-08 10:27:19 +02:00
parent 7fb37b3e89
commit e27d854801
1 changed files with 0 additions and 2 deletions

View File

@ -44,7 +44,6 @@ $('.oe_website_sale').each(function () {
$(oe_website_sale).find(".oe_cart input.js_quantity").on("change", function () {
var $input = $(this);
if ($input.data('update_change')) {
console.log($input.val()+ "+++");
return;
}
var value = parseInt($input.val(), 10);
@ -81,7 +80,6 @@ $('.oe_website_sale').each(function () {
.then(function (data) {
$input.data('update_change', false);
if (value !== parseInt($input.val(), 10)) {
console.log($input.val()+ "***");
$input.trigger('change');
return;
}