Skip to content

Commit

Permalink
// Fix little bug of undefined js var
Browse files Browse the repository at this point in the history
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13257 b9a71923-0436-4b27-9f14-aed3839534dd
  • Loading branch information
mDeflotte committed Feb 13, 2012
1 parent 68b4b1c commit 6263b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/default/js/order-opc.js
Expand Up @@ -775,6 +775,6 @@ $(document).ready(function() {
$('.addressesAreEquals').find('input').attr('checked', false);
}

if (open_multishipping_fancybox)
if (typeof(open_multishipping_fancybox) != 'undefined' && open_multishipping_fancybox)
$('#link_multishipping_form').click();
});

0 comments on commit 6263b14

Please sign in to comment.