PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/rfstoolsupply.com/wp-content/plugins/woozone/modules/depedencies/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/rfstoolsupply.com/wp-content/plugins/woozone/modules/depedencies/app.depedencies.js |
/* Document : Dashboard Author : Andrei Dinca, AA-Team http://codecanyon.net/user/AA-Team */ // Initialization and events code for the app WooZoneDashboard = (function ($) { "use strict"; // public var debug = false; var maincontainer = null; // init function, autoload function init() { maincontainer = $("#WooZone-ajax-response"); triggers(); }; function boxLoadAjaxContent( box ) { var allAjaxActions = []; box.find('.is_ajax_content').each(function(key, value){ var alias = $(value).text().replace( /\n/g, '').replace("{", "").replace("}", ""); $(value).attr('id', 'WooZone-row-alias-' + alias); allAjaxActions.push( alias ); }); jQuery.post(ajaxurl, { 'action' : 'WooZoneDashboardRequest', 'sub_actions' : allAjaxActions.join(","), 'prod_per_page' : box.find(".WooZone-numer-items-in-top").val(), 'debug' : debug }, function(response) { $.each(response, function(key, value){ if( value.status == 'valid' ){ var row = box.find( "#WooZone-row-alias-" + key ); row.html(value.html); row.removeClass('is_ajax_content'); tooltip(); } }); }, 'json'); } function tooltip() { var xOffset = -30, yOffset = -300, winW = $(window).width(); $(".WooZone-aa-products-container ul li a").hover(function(e){ var that = $(this), preview = that.data('preview'); $("body").append("<p id='WooZone-aa-preview'>"+ ( '<img src="' + ( preview ) + '" >' ) +"</p>"); var new_left = e.pageX + yOffset; if( new_left > (winW - 640) ){ new_left = (winW - 640) } $("#WooZone-aa-preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(new_left) + "px") .fadeIn("fast"); }, function(){ this.title = this.t; $("#WooZone-aa-preview").remove(); }); $(".WooZone-aa-products-container ul li a").mousemove(function(e){ var new_left = e.pageX + yOffset; if( new_left > (winW - 640) ){ new_left = (winW - 640) } $("#WooZone-aa-preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(new_left) + "px"); }); } function triggers() { maincontainer.find(">div").each( function(e){ var that = $(this); // check if box has ajax content if( that.find('.is_ajax_content').size() > 0 ){ boxLoadAjaxContent(that); } }); maincontainer.find(".WooZone-numer-items-in-top").on('change', function(){ var that = $(this), box = that.parents('.WooZone-dashboard-status-box').eq(0); box.find('.WooZone-dashboard-status-box-content').addClass('is_ajax_content').html('{products_performances}'); boxLoadAjaxContent(box); }); $(".WooZone-aa-products-tabs").on('click', "li:not(.on) a", function(e){ e.preventDefault(); var that = $(this), alias = that.attr('class').split("items-"), alias = alias[1]; $('.WooZone-aa-products-container').hide(); $("#aa-prod-" + alias).show(); $(".WooZone-aa-products-tabs").find("li.on").removeClass('on'); that.parent('li').addClass('on'); }); // re-check depedencies $("input.WooZone-depedencies-check").on('click', function(e) { e.preventDefault(); window.location.reload() }); } // external usage return { "init": init } })(jQuery);