Merge pull request #1 from jmotes/patch-1

Fix for #5106 - allow checkout in older IE
This commit is contained in:
jmotes 2014-03-11 18:56:03 -05:00
commit e754c2ec87
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ jQuery(function($) {
data: data,
success: function( response ) {
if ( response ) {
var order_output = $($.parseHTML(response.trim()));
var order_output = $($.parseHTML($.trim(response)));
$('#order_review').html(order_output.html());
$('#order_review').find('input[name=payment_method]:checked').click();
$('body').trigger('updated_checkout');