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 {
$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