﻿$(document).ready(function() {
    // hide the OkToEmail table row in the account control
    $('.account tr:last').addClass('hidden');

    // validate the post code on the createaccount page.
    //$('#ctl00_PageContent_btnContinueCheckout').click(function(e) {
    //    if ($('#ctl00_PageContent_ctrlBillingAddress_Zip').val().length == 0) {
    //        $('#postcodeValid').html('false');
    //    }
    //    //e.preventDefault();
    //});

    // add classes to the shopping cart update and checkout elements.
    $('.mini_cart tr:last td:last').addClass('miniCartCheckoutLink');
    $('.mini_cart tr:last td:first input').addClass('miniCartUpdateButton');
});

// Check for partial load and re-apply jQuery for minicart elements so we don't lose them
// when the 'update' link is clicked on.
function pageLoad(sender, args) {
    if (args.get_isPartialLoad()) {
        $('.mini_cart tr:last td:last').addClass('miniCartCheckoutLink');
        $('.mini_cart tr:last td:first input').addClass('miniCartUpdateButton');
    }
}
