trigger change @0868553652423db6712cbf283aea639095da642a

This commit is contained in:
Mike Jolley 2012-04-10 18:17:36 +01:00
parent 79aa1eb411
commit 85c42f00ed
2 changed files with 5 additions and 1 deletions

View File

@ -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