Subversion Repositories SmartDukaan

Rev

Rev 24440 | Rev 25738 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24440 Rev 24457
Line 116... Line 116...
116
			$('#cart-details-empty').show();
116
			$('#cart-details-empty').show();
117
			$('#cart-checkout').hide();
117
			$('#cart-checkout').hide();
118
		}
118
		}
119
	});
119
	});
120
	
120
	
121
	$(".cart-qty").live('change paste keyup mouseup', function() {
121
	$(".cart-qty").live('change', function() {
122
		var itemId = $(this).attr('data');
122
		var itemId = $(this).attr('data');
123
		var maxQty = $(this).attr('max');
123
		var maxQty = $(this).attr('max');
124
		var qty = $(this).val();
124
		var qty = $(this).val();
125
		if (!qty){
125
		if (!qty){
126
			qty = 0;
126
			qty = 0;