data min fix for cart

This commit is contained in:
Mike Jolley 2012-02-23 12:50:33 +00:00
parent cc1c77db20
commit eef86edd73
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ jQuery(document).ready(function($) {
// Quantity buttons
$("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass('buttons_added').append('<input type="button" value="+" id="add1" class="plus" />').prepend('<input type="button" value="-" id="minus1" class="minus" />');
$("div.quantity, td.quantity").find('.qty').each(function(){
$("div.quantity:not(.cart div.quantity), td.quantity").find('.qty').each(function(){
var min = parseInt($(this).attr('data-min'));

File diff suppressed because one or more lines are too long