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