File: D:/HostingSpaces/Eurotools/euro-tools.nl/resources/assets/js/site/profile.js
/* ==========================================================================
Navigation handler
========================================================================== */
/**
* Main navigation
*/
var Profile = {
// Initialize click event
init : function()
{
$('.profile-content h4 .shippingToggle').bind('click',function(ev) {
var checkBox = $('.profile-content h4 .shippingToggle input[type=checkbox]');
$(checkBox).attr("checked", !checkBox.attr("checked"));
$('.profile-content .shipping-address .shipping-block').toggle();
});
},
};
Profile.init();