// source --> http://evedam.com/wp-content/plugins/wm-simple-captcha/assets/js/wmsimplecaptcha_scripts.js?ver=5.2.18 var wmcaptcha_fieldbox_a_clicked = false; function wmcaptcha_captcha_ajax(){ wmcaptcha_fieldbox_a_clicked = true; jQuery(".wmcaptcha_fieldbox_a").animate({opacity: 0.25}, 300, function() {}); var r = {"action":"wmsimplecaptcha_action"} jQuery.ajax({ type: "POST", url: ajax_object.ajax_url, data: r, //dataType: "json", success:function(data) { //alert(JSON.stringify(data)) //alert(data); wmcaptcha_fieldbox_a_clicked = false; jQuery(".wmcaptcha_fieldbox_img").html(data); jQuery(".wmcaptcha_fieldbox_a").animate({opacity: 1}, 500, function() {}); }, error: function(jqxhr, textStatus, error ){ wmcaptcha_fieldbox_a_clicked = false; alert(jqxhr + " - " + textStatus + " - " + error + " --- " + jqxhr.responseText); } }); } jQuery( document ).ready(function( $ ) { $(".wmcaptcha_fieldbox_a.refresh_button, .wmcaptcha_fieldbox_img.refresh_image").click(function(){ if(wmcaptcha_fieldbox_a_clicked) return false; wmcaptcha_captcha_ajax(); return false; }); }); // source --> http://evedam.com/wp-content/plugins/soundy-background-music/js/front-end.js?ver=5.2.18 function war_SoundyFrontEnd( args ) { var _this = this; _this.pp_code = args.pp_code; _this.audio_code = args.audio_code; _this.audio_volume = args.audio_volume; _this.preview = args.preview; _this.button_url_play_normal = args.button_url_play_normal; _this.button_url_pause_normal = args.button_url_pause_normal; _this.button_url_play_hover = args.button_url_play_hover; _this.button_url_pause_hover = args.button_url_pause_hover; _this.user_agent_is_IOS = args.user_agent_is_IOS; _this.hovering = false; jQuery.noConflict(); jQuery( document ).ready( function() { if( _this.pp_code ) { if( ! jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).length ) { jQuery( 'body' ).append( _this.pp_code ); } } if( ! jQuery( '#war_soundy_audio_player' ).length ) { jQuery( 'body' ).append( _this.audio_code ); } _this.audio_control = jQuery( '.war_soundy_audio_control' ); _this.audio_player = jQuery( '#war_soundy_audio_player' ); _this.audio_player_element = _this.audio_player[ 0 ]; _this.audio_player_element.volume = _this.audio_volume; if( _this.preview != 'false' ) { // Workaround for the preview player hanging: var opener_player = window.opener.jQuery( '#war_soundy_audio_player' )[ 0 ]; opener_player.play(); opener_player.pause(); _this.button_url_play_normal = window.opener.jQuery( '#war_soundy_url_play_button' ).val(); _this.button_url_pause_normal = window.opener.jQuery( '#war_soundy_url_pause_button' ).val(); _this.button_url_play_hover = window.opener.jQuery( '#war_soundy_url_play_hover' ).val(); _this.button_url_pause_hover = window.opener.jQuery( '#war_soundy_url_pause_hover' ).val(); if( _this.audio_player_element.autoplay ) { _this.audio_player_element.load(); _this.audio_player_element.play(); _this.audio_control.attr( 'src', _this.button_url_pause_normal ); } else { _this.audio_control.attr( 'src', _this.button_url_play_normal ); } var position = window.opener.jQuery( '#war_soundy_pp_position' ).children( 'option:selected' ).val(); if( position == 'document' ) { _this.audio_control.css( 'position', 'absolute' ); } else { _this.audio_control.css( 'position', 'fixed' ); } var pp_corner = window.opener.jQuery( '#war_soundy_pp_corner' ).children( 'option:selected' ).val(); var offset_x = window.opener.jQuery( '#war_soundy_offset_x' ).val() + window.opener.jQuery( '#war_soundy_offset_x_unit' ).val(); var offset_y = window.opener.jQuery( '#war_soundy_offset_y' ).val() + window.opener.jQuery( '#war_soundy_offset_y_unit' ).val(); switch( pp_corner ) { case 'upper_right': _this.audio_control.css( 'top', offset_y ); _this.audio_control.css( 'right', offset_x ); _this.audio_control.css( 'bottom', '' ); _this.audio_control.css( 'left', '' ); break; case 'upper_left': _this.audio_control.css( 'top', offset_y ); _this.audio_control.css( 'right', '' ); _this.audio_control.css( 'bottom', '' ); _this.audio_control.css( 'left', offset_x ); break; case 'bottom_right': _this.audio_control.css( 'top', '' ); _this.audio_control.css( 'right', offset_x ); _this.audio_control.css( 'bottom', offset_y ); _this.audio_control.css( 'left', '' ); break; case 'bottom_left': _this.audio_control.css( 'top', '' ); _this.audio_control.css( 'right', '' ); _this.audio_control.css( 'bottom', offset_y ); _this.audio_control.css( 'left', offset_x ); break; } } _this.initPPButtonAudio(); _this.audio_control.load( function() { _this.initPPButtonLayout(); jQuery( window ).resize( function() { _this.initPPButtonLayout(); } ); } ); } ); } war_SoundyFrontEnd.prototype.animateVolume = function( audio_player_element, new_volume ) { var _this = this; var volume = audio_player_element.volume; function iterateVolume() { var volume_diff = Math.abs( volume - new_volume ); if( volume_diff > 0.1 && volume < new_volume ) { volume += 0.1; } else if( volume_diff > 0.1 && volume > new_volume ) { volume -= 0.1; } else { clearInterval( interval_id ); return; } audio_player_element.volume = volume; } var interval_id = setInterval( iterateVolume, 400 ); } war_SoundyFrontEnd.prototype.initPPButtonAudio = function() { var _this = this; if( _this.audio_player_element.paused ) { _this.audio_control.attr( 'src', _this.button_url_play_normal ); } else { _this.audio_control.attr( 'src', _this.button_url_pause_normal ); } _this.audio_control.click( function() { if( _this.audio_player_element.paused ) { _this.audio_player_element.play(); _this.audio_control.attr( 'src', _this.button_url_pause_hover ); } else { _this.audio_player_element.pause(); _this.audio_control.attr( 'src', _this.button_url_play_hover ); } } ); _this.audio_control.hover( function() { _this.hovering = true; if( _this.audio_player_element.paused ) { _this.audio_control.attr( 'src', _this.button_url_play_hover ); } else { _this.audio_control.attr( 'src', _this.button_url_pause_hover ); } }, function() { _this.hovering = false; if( _this.audio_player_element.paused ) { _this.audio_control.attr( 'src', _this.button_url_play_normal ); } else { _this.audio_control.attr( 'src', _this.button_url_pause_normal ); } } ); _this.audio_player.bind( 'ended' , function() { if( _this.hovering ) { _this.audio_control.attr( 'src', _this.button_url_play_hover ); } else { _this.audio_control.attr( 'src', _this.button_url_play_normal ); } } ); _this.audio_player.bind( 'play' , function() { if( _this.hovering ) { _this.audio_control.attr( 'src', _this.button_url_pause_hover ); } else { _this.audio_control.attr( 'src', _this.button_url_pause_normal ); } } ); if( _this.audio_player_element.autoplay ) { if( _this.user_agent_is_IOS ) { if( _this.hovering ) { _this.audio_control.attr( 'src', _this.button_url_play_hover ); } else { _this.audio_control.attr( 'src', _this.button_url_play_normal ); } } } } war_SoundyFrontEnd.prototype.initPPButtonLayout = function() { var _this = this; if( ! _this.audio_control.length ) return; if( _this.is_audio_control_width_and_height_set == null ) { _this.button_width = _this.audio_control.prop( 'width' ); if( _this.button_width == 0 ) return; _this.button_height = _this.audio_control.prop( 'height' ); _this.button_aspect_ratio = _this.button_height / _this.button_width; _this.is_audio_control_width_and_height_set = true; } if( war_soundy_responsive_mode != 'none' ) { var window_width = jQuery( window ).width(); switch( war_soundy_button_corner ) { case 'upper_right': default: var prop_x = 'right'; var prop_y = 'top'; break; case 'upper_left': var prop_x = 'left'; var prop_y = 'top'; break; case 'bottom_right': var prop_x = 'right'; var prop_y = 'bottom'; break; case 'bottom_left': var prop_x = 'left'; var prop_y = 'bottom'; break; } if( war_soundy_responsive_mode == 'table' ) { for( var index in war_soundy_responsive_table_rows ) { var row = war_soundy_responsive_table_rows[ index ]; if( row.button_width != -1 ) { if( row.window_width_min != -1 && row.window_width_max != -1 ) { if( row.window_width_min <= window_width && window_width <= row.window_width_max ) { _this.audio_control.css( 'width', row.button_width ); _this.audio_control.css( 'height', Math.round( row.button_width * _this.button_aspect_ratio ) ); } } else if( row.window_width_min != -1 ) { if( row.window_width_min <= window_width ) { _this.audio_control.css( 'width', row.button_width ); _this.audio_control.css( 'height', Math.round( row.button_width * _this.button_aspect_ratio ) ); } } else if( row.window_width_max != -1 ) { if( window_width <= row.window_width_max ) { _this.audio_control.css( 'width', row.button_width ); _this.audio_control.css( 'height', Math.round( row.button_width * _this.button_aspect_ratio ) ); } } } } if( jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).length ) { for( var index in war_soundy_responsive_table_rows ) { var row = war_soundy_responsive_table_rows[ index ]; if( row.offset_x != -1 || row.offset_y != -1 ) { if( row.window_width_min != -1 && row.window_width_max != -1 ) { if( row.window_width_min <= window_width && window_width <= row.window_width_max ) { if( row.offset_x != -1 ) jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).css( prop_x, row.offset_x ); if( row.offset_y != -1 ) jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).css( prop_y, row.offset_y ); } } else if( row.window_width_min != -1 ) { if( row.window_width_min <= window_width ) { if( row.offset_x != -1 ) jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).css( prop_x, row.offset_x ); if( row.offset_y != -1 ) jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).css( prop_y, row.offset_y ); } } else if( row.window_width_max != -1 ) { if( window_width <= row.window_width_max ) { if( row.offset_x != -1 ) jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).css( prop_x, row.offset_x ); if( row.offset_y != -1 ) jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ).css( prop_y, row.offset_y ); } } } } } } else // if( war_soundy_responsive_mode == 'scale' ) { var scale_factor = ( window_width * 0.7 / war_soundy_responsive_reference_window_width ) + 0.3; var responsive_button_width = Math.round( _this.button_width * scale_factor ); _this.audio_control.width( responsive_button_width ); _this.audio_control.height( Math.round( responsive_button_width * _this.button_aspect_ratio ) ); var jquery_corner_button = jQuery( '.war_soundy_audio_control.war_soundy_pp_corner' ); if( jquery_corner_button.length ) { if( _this.is_button_offsets_set == null ) { _this.button_offset_x = jquery_corner_button.css( prop_x ); _this.button_offset_y = jquery_corner_button.css( prop_y ); _this.is_button_offsets_set = true; } var offset_x = _this.button_offset_x; offset_x = offset_x.replace( 'px', '' ); var offset_y = _this.button_offset_y; offset_y = offset_y.replace( 'px', '' ); var responsive_offset_x = Math.round( offset_x * scale_factor ); var responsive_offset_y = Math.round( offset_y * scale_factor ); jquery_corner_button.css( prop_x, responsive_offset_x ); jquery_corner_button.css( prop_y, responsive_offset_y ); } } } }; // source --> http://evedam.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.70 /*! * jQuery blockUI plugin * Version 2.70.0-2014.11.23 * Requires jQuery v1.7 or later * * Examples at: http://malsup.com/jquery/block/ * Copyright (c) 2007-2013 M. Alsup * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Thanks to Amir-Hossein Sobhi for some excellent contributions! */ !function(){"use strict";function e(e){function t(t,n){var s,h,k=t==window,y=n&&n.message!==undefined?n.message:undefined;if(!(n=e.extend({},e.blockUI.defaults,n||{})).ignoreIfBlocked||!e(t).data("blockUI.isBlocked")){if(n.overlayCSS=e.extend({},e.blockUI.defaults.overlayCSS,n.overlayCSS||{}),s=e.extend({},e.blockUI.defaults.css,n.css||{}),n.onOverlayClick&&(n.overlayCSS.cursor="pointer"),h=e.extend({},e.blockUI.defaults.themedCSS,n.themedCSS||{}),y=y===undefined?n.message:y,k&&p&&o(window,{fadeOut:0}),y&&"string"!=typeof y&&(y.parentNode||y.jquery)){var m=y.jquery?y[0]:y,g={};e(t).data("blockUI.history",g),g.el=m,g.parent=m.parentNode,g.display=m.style.display,g.position=m.style.position,g.parent&&g.parent.removeChild(m)}e(t).data("blockUI.onUnblock",n.onUnblock);var v,I,w,U,x=n.baseZ;v=e(r||n.forceIframe?'':''),I=e(n.theme?'':''),n.theme&&k?(U='"):n.theme?(U='"):U=k?'':'',w=e(U),y&&(n.theme?(w.css(h),w.addClass("ui-widget-content")):w.css(s)),n.theme||I.css(n.overlayCSS),I.css("position",k?"fixed":"absolute"),(r||n.forceIframe)&&v.css("opacity",0);var C=[v,I,w],S=e(k?"body":t);e.each(C,function(){this.appendTo(S)}),n.theme&&n.draggable&&e.fn.draggable&&w.draggable({handle:".ui-dialog-titlebar",cancel:"li"});var O=f&&(!e.support.boxModel||e("object,embed",k?null:t).length>0);if(u||O){if(k&&n.allowBodyStretch&&e.support.boxModel&&e("html,body").css("height","100%"),(u||!e.support.boxModel)&&!k)var E=a(t,"borderTopWidth"),T=a(t,"borderLeftWidth"),M=E?"(0 - "+E+")":0,B=T?"(0 - "+T+")":0;e.each(C,function(e,t){var o=t[0].style;if(o.position="absolute",e<2)k?o.setExpression("height","Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:"+n.quirksmodeOffsetHack+') + "px"'):o.setExpression("height",'this.parentNode.offsetHeight + "px"'),k?o.setExpression("width",'jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):o.setExpression("width",'this.parentNode.offsetWidth + "px"'),B&&o.setExpression("left",B),M&&o.setExpression("top",M);else if(n.centerY)k&&o.setExpression("top",'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'),o.marginTop=0;else if(!n.centerY&&k){var i="((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "+(n.css&&n.css.top?parseInt(n.css.top,10):0)+') + "px"';o.setExpression("top",i)}})}if(y&&(n.theme?w.find(".ui-widget-content").append(y):w.append(y),(y.jquery||y.nodeType)&&e(y).show()),(r||n.forceIframe)&&n.showOverlay&&v.show(),n.fadeIn){var j=n.onBlock?n.onBlock:c,H=n.showOverlay&&!y?j:c,z=y?j:c;n.showOverlay&&I._fadeIn(n.fadeIn,H),y&&w._fadeIn(n.fadeIn,z)}else n.showOverlay&&I.show(),y&&w.show(),n.onBlock&&n.onBlock.bind(w)();if(i(1,t,n),k?(p=w[0],b=e(n.focusableElements,p),n.focusInput&&setTimeout(l,20)):d(w[0],n.centerX,n.centerY),n.timeout){var W=setTimeout(function(){k?e.unblockUI(n):e(t).unblock(n)},n.timeout);e(t).data("blockUI.timeout",W)}}}function o(t,o){var s,l=t==window,d=e(t),a=d.data("blockUI.history"),c=d.data("blockUI.timeout");c&&(clearTimeout(c),d.removeData("blockUI.timeout")),o=e.extend({},e.blockUI.defaults,o||{}),i(0,t,o),null===o.onUnblock&&(o.onUnblock=d.data("blockUI.onUnblock"),d.removeData("blockUI.onUnblock"));var r;r=l?e(document.body).children().filter(".blockUI").add("body > .blockUI"):d.find(">.blockUI"),o.cursorReset&&(r.length>1&&(r[1].style.cursor=o.cursorReset),r.length>2&&(r[2].style.cursor=o.cursorReset)),l&&(p=b=null),o.fadeOut?(s=r.length,r.stop().fadeOut(o.fadeOut,function(){0==--s&&n(r,a,o,t)})):n(r,a,o,t)}function n(t,o,n,i){var s=e(i);if(!s.data("blockUI.isBlocked")){t.each(function(e,t){this.parentNode&&this.parentNode.removeChild(this)}),o&&o.el&&(o.el.style.display=o.display,o.el.style.position=o.position,o.el.style.cursor="default",o.parent&&o.parent.appendChild(o.el),s.removeData("blockUI.history")),s.data("blockUI.static")&&s.css("position","static"),"function"==typeof n.onUnblock&&n.onUnblock(i,n);var l=e(document.body),d=l.width(),a=l[0].style.width;l.width(d-1).width(d),l[0].style.width=a}}function i(t,o,n){var i=o==window,l=e(o);if((t||(!i||p)&&(i||l.data("blockUI.isBlocked")))&&(l.data("blockUI.isBlocked",t),i&&n.bindEvents&&(!t||n.showOverlay))){var d="mousedown mouseup keydown keypress keyup touchstart touchend touchmove";t?e(document).bind(d,n,s):e(document).unbind(d,s)}}function s(t){if("keydown"===t.type&&t.keyCode&&9==t.keyCode&&p&&t.data.constrainTabKey){var o=b,n=!t.shiftKey&&t.target===o[o.length-1],i=t.shiftKey&&t.target===o[0];if(n||i)return setTimeout(function(){l(i)},10),!1}var s=t.data,d=e(t.target);return d.hasClass("blockOverlay")&&s.onOverlayClick&&s.onOverlayClick(t),d.parents("div."+s.blockMsgClass).length>0||0===d.parents().children().filter("div.blockUI").length}function l(e){if(b){var t=b[!0===e?b.length-1:0];t&&t.focus()}}function d(e,t,o){var n=e.parentNode,i=e.style,s=(n.offsetWidth-e.offsetWidth)/2-a(n,"borderLeftWidth"),l=(n.offsetHeight-e.offsetHeight)/2-a(n,"borderTopWidth");t&&(i.left=s>0?s+"px":"0"),o&&(i.top=l>0?l+"px":"0")}function a(t,o){return parseInt(e.css(t,o),10)||0}e.fn._fadeIn=e.fn.fadeIn;var c=e.noop||function(){},r=/MSIE/.test(navigator.userAgent),u=/MSIE 6.0/.test(navigator.userAgent)&&!/MSIE 8.0/.test(navigator.userAgent),f=(document.documentMode,e.isFunction(document.createElement("div").style.setExpression));e.blockUI=function(e){t(window,e)},e.unblockUI=function(e){o(window,e)},e.growlUI=function(t,o,n,i){var s=e('
');t&&s.append("

"+t+"

"),o&&s.append("

"+o+"

"),n===undefined&&(n=3e3);var l=function(t){t=t||{},e.blockUI({message:s,fadeIn:"undefined"!=typeof t.fadeIn?t.fadeIn:700,fadeOut:"undefined"!=typeof t.fadeOut?t.fadeOut:1e3,timeout:"undefined"!=typeof t.timeout?t.timeout:n,centerY:!1,showOverlay:!1,onUnblock:i,css:e.blockUI.defaults.growlCSS})};l();s.css("opacity");s.mouseover(function(){l({fadeIn:0,timeout:3e4});var t=e(".blockMsg");t.stop(),t.fadeTo(300,1)}).mouseout(function(){e(".blockMsg").fadeOut(1e3)})},e.fn.block=function(o){if(this[0]===window)return e.blockUI(o),this;var n=e.extend({},e.blockUI.defaults,o||{});return this.each(function(){var t=e(this);n.ignoreIfBlocked&&t.data("blockUI.isBlocked")||t.unblock({fadeOut:0})}),this.each(function(){"static"==e.css(this,"position")&&(this.style.position="relative",e(this).data("blockUI.static",!0)),this.style.zoom=1,t(this,o)})},e.fn.unblock=function(t){return this[0]===window?(e.unblockUI(t),this):this.each(function(){o(this,t)})},e.blockUI.version=2.7,e.blockUI.defaults={message:"

Please wait...

",title:null,draggable:!0,theme:!1,css:{padding:0,margin:0,width:"30%",top:"40%",left:"35%",textAlign:"center",color:"#000",border:"3px solid #aaa",backgroundColor:"#fff",cursor:"wait"},themedCSS:{width:"30%",top:"40%",left:"35%"},overlayCSS:{backgroundColor:"#000",opacity:.6,cursor:"wait"},cursorReset:"default",growlCSS:{width:"350px",top:"10px",left:"",right:"10px",border:"none",padding:"5px",opacity:.6,cursor:"default",color:"#fff",backgroundColor:"#000","-webkit-border-radius":"10px","-moz-border-radius":"10px","border-radius":"10px"},iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank",forceIframe:!1,baseZ:1e3,centerX:!0,centerY:!0,allowBodyStretch:!0,bindEvents:!0,constrainTabKey:!0,fadeIn:200,fadeOut:400,timeout:0,showOverlay:!0,focusInput:!0,focusableElements:":input:enabled:visible",onBlock:null,onUnblock:null,onOverlayClick:null,quirksmodeOffsetHack:4,blockMsgClass:"blockMsg",ignoreIfBlocked:!1};var p=null,b=[]}"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],e):e(jQuery)}();