????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./peekmysite.com/wp-content/plugins/wpforms-lite/assets/lib/ |
Upload File : |
(function(root,factory){if(typeof define==="function"&&define.amd){define(["exports","jquery"],function(exports,$){return factory(exports,$)})}else if(typeof exports!=="undefined"){const $=require("jquery");factory(exports,$)}else{factory(root,root.jQuery||root.$)}})(this,function(exports,$){"use strict";const conditionsjs={defaults:{condition:null,actions:{},effect:"fade"}};conditionsjs.callback=function(conditions){return this.each(function(index,element){const CJS=new ConditionsJS(element,conditions,conditionsjs.defaults);CJS.init()})};if(typeof $.fn!=="undefined"){$.fn.conditions=conditionsjs.callback}exports.conditionsjs=conditionsjs;const ConditionsJS=function(element,conditions,defaults){const that=this;that.element=$(element);that.defaults=defaults;that.conditions=conditions;that._init=false;if(!Array.isArray(that.conditions)){that.conditions=[that.conditions]}$.each(that.conditions,function(i,v){that.conditions[i]=$.extend({},that.defaults,v)})};ConditionsJS.prototype.init=function(){const that=this;that._init=true;$(that.element).on("change",function(){that.matchConditions()});$(that.element).on("keyup",function(){that.matchConditions()});that.matchConditions(true)};ConditionsJS.prototype.matchConditions=function(init=false){const that=this;if(!init){that._init=false}$.each(that.conditions,function(ind,cond){let condition_matches=false,all_conditions_match=true;if(!Array.isArray(cond.conditions)){cond.conditions=[cond.conditions]}$.each(cond.conditions,function(i,c){c=$.extend({element:null,type:"val",operator:"==",condition:null,multiple:"single"},c);c.element=$(c.element);switch(c.type){case"value":case"val":switch(c.operator){case"===":case"==":case"=":if(Array.isArray(c.element.val())){let m_single_condition_matches=false;let m_all_condition_matches=true;$.each(c.element.val(),function(index,value){if(value===c.condition){m_single_condition_matches=true}else{m_all_condition_matches=false}});condition_matches="single"===c.multiple?m_single_condition_matches:m_all_condition_matches}else{condition_matches=c.element.val()===c.condition}break;case"!==":case"!=":if(Array.isArray(c.element.val())){let m_single_condition_matches=false;let m_all_condition_matches=true;$.each(c.element.val(),function(index,value){if(value!==c.condition){m_single_condition_matches=true}else{m_all_condition_matches=false}});condition_matches="single"===c.multiple?m_single_condition_matches:m_all_condition_matches}else{condition_matches=c.element.val()!==c.condition}break;case"array":if(Array.isArray(c.element.val())){let m_single_condition_matches=false;let m_all_condition_matches=c.element.val().length===c.condition.length;$.each(c.element.val(),function(index,value){if($.inArray(value,c.condition)!==-1){m_single_condition_matches=true}else{m_all_condition_matches=false}});condition_matches="single"===c.multiple?m_single_condition_matches:m_all_condition_matches}else{condition_matches=$.inArray(c.element.val(),c.condition)!==-1}break;case"!array":if(Array.isArray(c.element.val())){let m_single_condition_matches=false;let m_all_condition_matches=true;const selected=[];$.each(c.element.val(),function(index,value){if($.inArray(value,c.condition)===-1){m_single_condition_matches=true}else{selected.push(value)}});if(selected.length===c.condition.length){m_all_condition_matches=false}condition_matches="single"===c.multiple?m_single_condition_matches:m_all_condition_matches}else{condition_matches=$.inArray(c.element.val(),c.condition)===-1}break}break;case"checked":switch(c.operator){case"is":condition_matches=c.element.is(":checked");break;case"!is":condition_matches=!c.element.is(":checked");break}break}if(!condition_matches&&all_conditions_match){all_conditions_match=false}});if(all_conditions_match){if(!$.isEmptyObject(cond.actions.if)){if(!Array.isArray(cond.actions.if)){cond.actions.if=[cond.actions.if]}$.each(cond.actions.if,function(i,condition){that.showAndHide(condition,cond.effect)})}}else{if(!$.isEmptyObject(cond.actions.else)){if(!Array.isArray(cond.actions.else)){cond.actions.else=[cond.actions.else]}$.each(cond.actions.else,function(i,condition){that.showAndHide(condition,cond.effect)})}}})};ConditionsJS.prototype.showAndHide=function(condition,effect){const that=this;switch(condition.action){case"show":that._show($(condition.element),effect);break;case"hide":that._hide($(condition.element),effect);break}};ConditionsJS.prototype._show=function(element,effect){const that=this;if(that._init){element.show()}else{switch(effect){case"appear":element.show();break;case"slide":element.slideDown();break;case"fade":element.fadeIn(300);break}}};ConditionsJS.prototype._hide=function(element,effect){const that=this;if(that._init){element.hide()}else{switch(effect){case"appear":element.hide();break;case"slide":element.slideUp();break;case"fade":element.fadeOut(300);break}}}});