Fix updating when typing. Closes #1540.

This commit is contained in:
Mike Jolley 2012-09-29 19:43:45 +01:00
parent 50559adf90
commit 1b8e887f39
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ jQuery(document).ready(function($) {
$('body').trigger('update_checkout');
}
});
$('.update_totals_on_change input').live('keydown', function( e ){
$('.update_totals_on_change input.input-text').live('keydown', function( e ){
var code = e.keyCode || e.which;
if ( code == '9' )
return;

File diff suppressed because one or more lines are too long