{"version":3,"sources":["search.js"],"names":["$","document","on","e","string","cond","this","find","val","hasClass","toLowerCase","indexOf","window","location","replace","designerURL","preventDefault","jQuery"],"mappings":"AAAA,cAAC,SAASA,GAoCNA,EAAEC,UAAUC,GAAG,SAAU,4BAA4B,SAASC,GAlC3C,IAAAC,EAEXC,EAFWD,EAoCEJ,EAAEM,MAAMC,KAAK,cAAcC,MAlCxCH,GAAO,EAEPL,EAAE,QAAQS,SAAS,OAEdL,EAAOM,cAAcC,QAAQ,SAAW,GAC7CP,EAAOM,cAAcC,QAAQ,UAAY,KACrCN,GAAO,GAGLL,EAAE,QAAQS,SAAS,OAEpBL,EAAOM,cAAcC,QAAQ,SAAW,GAC7CP,EAAOM,cAAcC,QAAQ,SAAW,GACxCP,EAAOM,cAAcC,QAAQ,SAAW,KACpCN,GAAO,IAKND,EAAOM,cAAcC,QAAQ,UAAY,GAC9CP,EAAOM,cAAcC,QAAQ,WAAa,KACtCN,GAAO,GAIVA,GACDO,OAAOC,SAASC,QAAQC,aAGrBV,GAMHF,EAAEa,gBAEV,GAEJ,CA3CC,CA2CEC","file":"../search.js","sourcesContent":["(function($) {\n\n const priceOffer = (string) => {\n\n let cond = false;\n\n if( $('body').hasClass('en') ) {\n\n if ( string.toLowerCase().indexOf('cost') > -1 ||\n string.toLowerCase().indexOf('price') > -1 ) {\n cond = true;\n }\n }\n else if ( $('body').hasClass('fr') ) {\n\n if ( string.toLowerCase().indexOf('coût') > -1 ||\n string.toLowerCase().indexOf('prix') > -1 ||\n string.toLowerCase().indexOf('cout') > -1 ) {\n cond = true;\n }\n }\n else {\n\n if ( string.toLowerCase().indexOf('costo') > -1 ||\n string.toLowerCase().indexOf('precio') > -1 ) {\n cond = true;\n }\n }\n\n if ( cond ) {\n window.location.replace(designerURL);\n }\n\n return cond;\n }\n\n $(document).on('submit', '.mobile-menu-search form', function(e) {\n\n if ( priceOffer( $(this).find('[name=\"s\"]').val() ) ) {\n e.preventDefault();\n }\n });\n\n})(jQuery);\n"]}