Merge pull request #1 from jmotes/patch-1
Fix for #5106 - allow checkout in older IE
This commit is contained in:
commit
e754c2ec87
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue