????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/assets/js/third/edd/
Upload File :
Current File : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/assets/js/third/edd/edd-cart-ajax.js

var $j = jQuery.noConflict();

$j( document ).on( 'ready', function() {
	"use strict";
    // Edd display cart
    oceanwpEDDCartDetails();
} );

/* ==============================================
Easy Digital Downloads Cart Details
============================================== */
function oceanwpEDDCartDetails() {
	"use strict"
	/**
	 * EDD cart information in the header
	 */
	var cartTotalAmount = $j('.eddmenucart-details.total');

	$j('body').on('edd_cart_item_added', function( event, response ) {

		$j( '.edd-menu-icon' ).removeClass('edd-cart-empty');

		cartTotalAmount.html( response.total );

	});

	$j('body').on('edd_cart_item_removed', function( event, response ) {

		cartTotalAmount.html( response.total );
	});

}