/* copiar somente esse arquivo para respectiva pasta do tema atual */
/* adiciona funcionalidades novas mantendo o core do módulo intacto */
/**/
(function (adicionarItem) {
	Minicart.adicionarItem = function (item, qty = 0) {
		adicionarItem.call(this, item, qty = 0);
		setTimeout(() => {
			jQuery('#transferEffect').remove(); /* Remove any existing one */
			jQuery('<style id="transferEffect" type="text/css">' + /* Add new one */
				'.ui-effects-transfer { background-image: url(' + item.getAttribute('data-src') + '); }' +
				'</style>').appendTo('head');
			jQuery(item).parents(".item").find(".product-image-wrapper img").effect('transfer', {to: jQuery('.produto_'+item.getAttribute('data-id'))}, 1500);
		}, 300);
	};
}(Minicart.adicionarItem));