trigger change @0868553652423db6712cbf283aea639095da642a
This commit is contained in:
parent
79aa1eb411
commit
85c42f00ed
|
@ -163,6 +163,8 @@ jQuery(document).ready(function($) {
|
||||||
} else {
|
} else {
|
||||||
$qty.val(currentVal + 1);
|
$qty.val(currentVal + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$qty.trigger('change');
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".minus").live('click', function() {
|
$(".minus").live('click', function() {
|
||||||
|
@ -179,6 +181,8 @@ jQuery(document).ready(function($) {
|
||||||
} else if (currentVal > 0) {
|
} else if (currentVal > 0) {
|
||||||
$qty.val(currentVal - 1);
|
$qty.val(currentVal - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$qty.trigger('change');
|
||||||
});
|
});
|
||||||
|
|
||||||
/* states */
|
/* states */
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue