/** * Estimated Delivery - Front Office Feature * * NOTICE OF LICENSE * * @author Pol Rué * @copyright Smart Modules 2015 * @license One time purchase Licence (You can modify or resell the product but just one time per licence) * @version 3.3.1 * @category Transport & Logistics * Registered Trademark & Property of Smart-Modules.prpo * * *************************************************** * * Estimated Delivery * * * http://www.smart-modules.com * * * V 3.3.1 * * *************************************************** */ $(document).ready(function() { $(document).on('click', '.quick-view, .quickview, js-quick-view, .js-quick-view-iqit', function() { var i = 0; ed_product_list_placement(25, 250); function ed_product_list_placement(tries, ms) { if ($('.quickview, .modal-quickview, .quick-view, .quickview-modal').length > 0) { ed_product_placement_init(10); } else { if (tries > 0) { ms = ms+15; setTimeout(function () { ed_product_list_placement(tries-1, ms); }, ms); } } } }); });