{"version":3,"sources":["../../dev/j/avg-pctuneup.js"],"names":["$infoBox","$","on","$self","this","$target","targetOpened","hasClass","removeClass","addClass"],"mappings":"CAAA,WACC,YAEA,IAAIA,GAAWC,EAAE,eACjBD,GAASE,GAAG,QAAS,WACpB,GAAIC,GAAQF,EAAEG,MACbC,EAAUF,EACVG,IAAiBD,EAAQE,SAAS,SAGnCP,GAASQ,YAAY,UAGjBF,EACHD,EAAQG,YAAY,UAEpBH,EAAQI,SAAS","file":"avg-pctuneup.js","sourcesContent":["(function() {\n\t'use strict';\n\n\tvar $infoBox = $('.js-info-box');\n\t$infoBox.on('click', function() {\n\t\tvar $self = $(this),\n\t\t\t$target = $self,\n\t\t\ttargetOpened = !!$target.hasClass('expand');\n\n\t\t// Close all boxes\n\t\t$infoBox.removeClass('expand');\n\n\t\t// Check current box for toggle\n\t\tif (targetOpened) {\n\t\t\t$target.removeClass('expand');\n\t\t} else {\n\t\t\t$target.addClass('expand');\n\t\t}\n\t});\n\n})();\n"]}