{"version":3,"sources":["fbc-oneqa.js"],"names":["$","Drupal","behaviors","fbcOneQA","attach","context","settings","append","slideUp","click","slideDown","e","target","id","closest","length","jQuery"],"mappings":"CAAC,SAAUA,GACT,YAEAC,QAAOC,UAAUC,UACbC,OAAQ,SAAUC,EAASC,GAGvBN,EAAE,mBAAmBO,OAAQP,EAAE,+BAC/BA,EAAE,8BAA8BQ,UAElCR,EAAE,iBAAiBS,MAAM,WACvBT,EAAE,8BAA8BU,YAChCV,EAAE,kBAAkBQ,YAGtBR,EAAE,QAAQS,MAAM,SAASE,GACJ,gBAAfA,EAAEC,OAAOC,IAA0E,IAAlDb,EAAEW,EAAEC,QAAQE,QAAQ,mBAAmBC,SAC1Ef,EAAE,8BAA8BQ,UAChCR,EAAE,kBAAkBU,kBAwB9BM","file":"../fbc-oneqa.js","sourcesContent":["(function ($) {\n 'use strict';\n\n Drupal.behaviors.fbcOneQA = {\n attach: function (context, settings) {\n\n // Move the form on the main landing page and animate it opening/closing\n $('#insert-webform').append( $('.webform-client-form-20710' ));\n $('.webform-client-form-20710').slideUp();\n\n $(\"#sales-button\").click(function(){\n $('.webform-client-form-20710').slideDown();\n $('#sales-content').slideUp();\n });\n\n $('body').click(function(e) {\n if (e.target.id != 'sales-button' && $(e.target).closest('#insert-webform').length === 0) {\n $('.webform-client-form-20710').slideUp();\n $('#sales-content').slideDown();\n }\n });\n\n\n // Hide/show integration form\n // if ($('.node-type-landing-page').length()) {\n // $('.webform-client-form-20639').slideUp();\n // }\n\n // $(\"#integration-button\").click(function(){\n // $('.webform-client-form-20639').slideDown();\n // });\n // $('body').click(function(e) {\n // if (e.target.id != 'integration-button' && $(e.target).closest('.webform-client-form-20639').length === 0) {\n // $('.webform-client-form-20639').slideUp();\n // $('#sales-content').slideDown();\n // }\n // });\n }\n };\n\n\n\n}(jQuery));\n"]}