(function() { function bxBootstrap() { var re = /bot|crawl|slurp|spider|mediapartners|headlesschrome|snap-prefetch|remotasks|woorank|uptime\.com|facebookexternalhit|facebookcatalog/i; if (re.test(navigator.userAgent) || navigator.userAgent == '') { return; } if (!(window.bouncex&&bouncex.website)) { var pushedData = []; if(window.bouncex && bouncex.push && bouncex.length){ pushedData = bouncex; } window.bouncex = {}; bouncex.pushedData = pushedData; bouncex.website = {"id":4255,"name":"Mara Hoffman","cookie_name":"bounceClientVisit4255","domain":"marahoffman.com","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"","force_https":false,"waypoints":false,"content_width":900,"gai":"UA-7417082-1","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"ffs":"","mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"\r\n/* ---------------------------- STANDARD VARIABLES ---------------------------- */\r\n\r\nvar CART_COOKIE_KEY = 'cart', \r\n CLEAN_URL = bouncex.utils.url.allowParams(), \r\n ROOT_DOMAIN = window.location.hostname.replace('www.', '');\r\n\r\n/* --------------------------------- CUSTOMIZATION VARIABLES -------------------------------- */\r\n\r\nvar splitCopyAtVerticalBar = false, // see README for description \r\n soldOutItemsOnSite = true, \r\n pdpAtcSelector = 'form[action=\"/cart/add\"] button[type=\"submit\"], button[name=\"add\"]',\r\n outOfStockSelector = 'span[data-add-to-cart-text]:contains(‘Sold out’)'; \r\n\r\n/* --------------------------------- HELPERS -------------------------------- */\r\n\r\n// GROUP ID AS ITEM:ID \r\nfunction getItemId(){\r\n return bouncex.utils.getNestedProp('ShopifyAnalytics.meta.product.id', '') || \r\n bouncex.utils.getNestedProp('__st.rid', '');\r\n}\r\n\r\nfunction getItemCopy(){\r\n var copy = jQuery('.shopify-section h1').first().text().trim() || \r\n jQuery('meta[property=\"og:title\"]').attr('content') || \r\n '';\r\n\r\n if (!splitCopyAtVerticalBar){\r\n return copy;\r\n }\r\n\r\n return copy.split(' | ').shift();\r\n}\r\n\r\nfunction getItemCategory(){\r\n return bouncex.utils.getNestedProp('ShopifyAnalytics.meta.product.type') || 'Global';\r\n}\r\n\r\nfunction getItemImage(){\r\n var imgUrl = jQuery('meta[property=\"og:image\"]').first().attr('content');\r\n\r\n if (!imgUrl){\r\n return false;\r\n }\r\n\r\n imgUrl = bouncex.utils.url.allowParams([], imgUrl.replace(/\\s+/g, ''));\r\n\r\n if (imgUrl.indexOf('http') === -1){\r\n return 'https:' + imgUrl;\r\n }\r\n\r\n return imgUrl ;\r\n}\r\n\r\nfunction getItemInStock(){\r\n if (!soldOutItemsOnSite){\r\n return true;\r\n }\r\n\r\n if (outOfStockSelector && jQuery(outOfStockSelector).length > 0){\r\n return false;\r\n }\r\n\r\n return jQuery(pdpAtcSelector).length > 0 ? !jQuery(pdpAtcSelector).is(':disabled') && jQuery(pdpAtcSelector).is(':visible') : true;\r\n}\r\n\r\n/* ------------------------------ ITEM TRACKING ----------------------------- */\r\n\r\nfunction getItem() {\r\n return {\r\n id: getItemId(), \r\n copy: getItemCopy(), \r\n category: getItemCategory(), \r\n url: CLEAN_URL,\r\n imageurl: getItemImage(),\r\n instock: getItemInStock()\r\n };\r\n}\r\n\r\nfunction fireViewItem(id) {\r\n bouncex.push(['view item', { 'item:id': id }]);\r\n}\r\n\r\nfunction initializeItemEvents() {\r\n var item;\r\n\r\n bouncex.et.onTrue(\r\n function () {\r\n item = getItem();\r\n return !!item.id &&\r\n !!item.copy &&\r\n !!item.category &&\r\n !!item.url &&\r\n !!item.imageurl;\r\n },\r\n function () {\r\n if (item.url.indexOf('gift-card') > -1) {\r\n return;\r\n }\r\n bouncex.push(['item', item]);\r\n\r\n fireViewItem(item.id);\r\n },\r\n 10\r\n );\r\n}\r\n\r\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\r\n\r\nfunction getItemIdsCat() {\r\n var ids = [],\r\n $tiles = bouncex.utils.getNestedProp('ShopifyAnalytics.meta.products', []);\r\n\r\n for (var i = 0; i < $tiles.length; i++ ) {\r\n var id = $tiles[i].id;\r\n\r\n if (!!id && ids.indexOf(id) === -1){\r\n ids.push(id);\r\n }\r\n }\r\n\r\n return ids.join(',');\r\n}\r\n\r\n\r\nfunction getItemIdsSearch(){\r\n var ids = [],\r\n tileSelector = 'div[data-product-id]';\r\n\r\n jQuery(tileSelector).each(function (i, e) {\r\n var id = jQuery(this).attr('data-product-id');\r\n\r\n if (id && ids.indexOf(id) < 0) {\r\n ids.push(id);\r\n }\r\n });\r\n\r\n return ids.join(',');\r\n}\r\n\r\nfunction getCategoryObject() {\r\n var itemIds = bouncex.website.pts === 'category' ? getItemIdsCat() : getItemIdsSearch();\r\n \r\n return {\r\n 'page:url': bouncex.utils.url.allowParams('q'),\r\n 'items:ids': itemIds\r\n };\r\n}\r\n\r\nfunction initializeCategoryEvents() {\r\n var categoryObj;\r\n\r\n bouncex.et.onTrue(\r\n function () {\r\n categoryObj = getCategoryObject();\r\n return !!categoryObj['items:ids'].length &&\r\n !!categoryObj['page:url'];\r\n },\r\n function () {\r\n bouncex.push(['view category', categoryObj]);\r\n },\r\n 10\r\n );\r\n}\r\n\r\n/* ------------------------------- CART EVENTS ------------------------------ */\r\n\r\nfunction fireAddToCart(itemId) {\r\n var token;\r\n\r\n bouncex.et.onTrue(\r\n function () {\r\n token = bouncex.getBounceCookie(CART_COOKIE_KEY);\r\n return token;\r\n },\r\n function () {\r\n bouncex.push([\r\n 'add to cart',\r\n {\r\n 'item:id': itemId,\r\n 'cart:token': token\r\n }\r\n ]);\r\n\r\n if (bouncex.vars.cart) {\r\n return;\r\n }\r\n\r\n bouncex.setVar('cart', true);\r\n },\r\n 10\r\n );\r\n}\r\n\r\nfunction initializeATCClickTracking() {\r\n bouncex.et.on(bouncex.document, 'click.bxatc', function () {\r\n var formId = jQuery(this).closest('form[action=\"/cart/add\"]').attr('id') || '';\r\n itemId = formId.split('_')[2];\r\n \r\n if (itemId){\r\n fireAddToCart(itemId);\r\n }\r\n \r\n }, pdpAtcSelector);\r\n}\r\n\r\nfunction initializeQuickviewEvents(){\r\n var QUICKVIEW_SELECTOR = 'div.quick-product';\r\n\r\n bouncex.et.onVisible(QUICKVIEW_SELECTOR, function(elem){\r\n var formId = jQuery(elem).find('form[action=\"/cart/add\"]').attr('id') || '';\r\n itemId = formId.split('_')[2];\r\n \r\n if (itemId){\r\n fireViewItem(itemId);\r\n }\r\n \r\n });\r\n}\r\n\r\nfunction emptyCart() {\r\n bouncex.et.onVarChange('cart_qty', function (oldVal, newVal) {\r\n if (bouncex.vars.cart && newVal === 0 && oldVal > 0) {\r\n bouncex.push(['empty_cart']);\r\n bouncex.setVar('cart', false);\r\n }\r\n });\r\n}\r\n\r\nfunction initializeCartEvents() {\r\n bouncex.et.cart.init({\r\n replenishmentType: 'cookie',\r\n replenish: function (cart) {\r\n bouncex.utils.cookies.create({\r\n name: CART_COOKIE_KEY,\r\n value: cart.token\r\n });\r\n replenComplete();\r\n }\r\n });\r\n\r\n\r\n function replenComplete() {\r\n window.location.href = CLEAN_URL + '?bx_replen=true';\r\n }\r\n\r\n emptyCart();\r\n}\r\n\r\n/* ------------------------------ USER TRACKING ----------------------------- */\r\n\r\nfunction getUserEmail(){\r\n return bouncex.utils.getNestedProp('swellConfig.customer.email') ||\r\n bouncex.utils.getNestedProp('ltkCustObj.email') ||\r\n bouncex.utils.getNestedProp('_BISConfig.customer.email') ||\r\n bouncex.utils.gtmLookup('CustomerEmail') ||\r\n bouncex.utils.gtmLookup('customeremail') ||\r\n bouncex.utils.getNestedProp('adroll_email');\r\n}\r\n\r\nfunction initializeUserTracking() {\r\n if (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\r\n return;\r\n }\r\n\r\n var userEmail;\r\n\r\n bouncex.et.onTrue(\r\n function () {\r\n userEmail = getUserEmail();\r\n return bouncex.utils.validate.email(userEmail);\r\n },\r\n function () {\r\n bouncex.push([\r\n 'user',\r\n {\r\n 'email': userEmail,\r\n 'source': 'LoggedIn'\r\n }\r\n ]);\r\n bouncex.setVar('logged_in_identified', true);\r\n },\r\n 5\r\n );\r\n}\r\n\r\n/* |----------- BW from Native Footer ----------------| */\r\n\r\n\r\nfunction initNativeSubmitFooter(){\r\n bouncex.et.on(jQuery('#Subscribe-footer'), 'click.wdk', fireRequestEmail);\r\n} \r\n\r\nfunction fireRequestEmail() {\r\n var parentInboxCampaign = '2207339',\r\n\temail = jQuery('#footer-subscribe-email').val();\r\n\r\n\tif(bouncex.utils.validate.email(email)){\r\n\t\tbouncex.push(['requestemail', {\r\n\t\t\temail: email,\r\n\t\t\tcampaignId: parentInboxCampaign,\r\n\t\t\ttestmode: bouncex.testmode.bxdev ? 1 : 0\r\n\t\t}]);\r\n\t}\r\n} \r\n\r\n\r\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\r\n\r\nfunction isValidDomain() {\r\n if (!bouncex.vars.location_path){\r\n return ROOT_DOMAIN === bouncex.website.domain;\r\n }\r\n\r\n return ROOT_DOMAIN === bouncex.website.domain && window.location.pathname.indexOf(bouncex.vars.location_path) > -1;\r\n}\r\n\r\nfunction isEn() {\r\n return bouncex.html.attr('lang') === 'en';\r\n}\r\n\r\nfunction isValidForTracking() {\r\n return isValidDomain() && isEn();\r\n}\r\n\r\nfunction init() {\r\n if (!isValidForTracking()) {\r\n return;\r\n }\r\n\r\n initializeUserTracking();\r\n initializeCartEvents();\r\n initializeQuickviewEvents();\r\n initializeATCClickTracking();\r\n initNativeSubmitFooter();\r\n \r\n\r\n switch (bouncex.website.pts) {\r\n case 'category':\r\n case 'search':\r\n initializeCategoryEvents();\r\n break;\r\n case 'product':\r\n initializeItemEvents();\r\n break;\r\n default:\r\n break;\r\n }\r\n}\r\n\r\n\r\ninit();\r\n","dge":true,"bxidLoadFirst":false,"pie":true,"cme":true,"gbi_enabled":0,"bpush":false,"pt":{"cart":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('__st.p') === 'collection';"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/checkouts/"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('__st.p') === 'home';"}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('__st.p') === 'product';"}]]},"search":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search?"}]]},"test":{"testmode":true,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":""}]]}},"els":{"blank_site_element":""},"vars":[{"name":"logged_in","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function () {\n if (bouncex.website.pts === 'checkout') {\n return jQuery('.breadcrumb__item--current:contains(\"Information\")').length > 0 ? jQuery('.logged-in-customer-information:visible').length > 0 : null;\n }\n\n return !!bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.customerId');\n})();","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function(){\n var count = 0;\n\n if (bouncex.website.pts === 'checkout') {\n jQuery('#order-summary .product-thumbnail__quantity').each(function() {\n count += Number(jQuery(this).text());\n });\n return count;\n }\n\n return Number(jQuery('[data-js-cart-count]').first().text());\n})();","trigger":""},{"name":"cart_value","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"bouncex.website.pts === 'checkout' ? Number(jQuery('.order-summary__section .total-line--subtotal .total-line__price').text().replace(/[^0-9.]/g, '')) : (jQuery('[data-cart-total]').data('cart-total') || 0)/100;","trigger":""},{"name":"submitted_onsite","polling":"all","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"jQuery('.form-status__message--success').length > 0 || null;","trigger":""},{"name":"prod_name","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('meta[property=\"og:title\"]').first().attr('content');","trigger":""},{"name":"prod_price","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"Number(jQuery('meta[property=\"og:price:amount\"]').attr('content'));","trigger":""},{"name":"in_stock","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('[data-add-to-cart-text]').first().text().indexOf('Sold out') === -1;","trigger":""},{"name":"page_url","polling":"none","persist":"no","page_types":["category","search"],"testmode":true,"default":"false","code":"window.location.href;","trigger":""},{"name":"cart","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"cookie_modal_present","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('#shopify-section-cookie_banner:visible:not(.js-hidden)').length > 0;\n","trigger":"pageload"},{"name":"valid_domain","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"window.location.hostname === \"marahoffman.com\";","trigger":"pageload"},{"name":"cart_set","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"}],"dgu":"pixel.cdnwidget.com","dgp":false,"ba":{"enabled":0,"fbte":0},"biu":"assets.bounceexchange.com","bau":"api.bounceexchange.com","beu":"events.bouncex.net","ibx":{"tjs":"","cjs":"","miw":1,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"bxid":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":0,"spatm":1,"preinit_cjs":"let segments = {\n\n testMode: false,\n interceptEnabled: false,\n arrayObserverEnabled: false,\n\n useIntercept() {\n if (!this.interceptEnabled) {\n return;\n }\n bouncex.utils.shqInterceptEvent = {\n cartAdd: true,\n categoryView: true,\n purchase: false,\n function(wkndEventParams) { // For automatically collecting purchases from cookie data\n let orderId = bouncex.utils.getNestedProp('obj.order_id', null, wkndEventParams) || 'no-orderid-' + Math.floor(Math.random() * 100000000);\n var Total = Number(bouncex.utils.getNestedProp('obj.amount', 0, wkndEventParams)) - (Number(bouncex.utils.getNestedProp('obj.tax', 0, wkndEventParams)) + Number(bouncex.utils.getNestedProp('obj.shipping', 0, wkndEventParams)));\n var orderInfo = bouncex.utils.getNestedProp('obj.item', null, wkndEventParams);\n var orderItems = orderInfo && orderInfo.map(function (ea) {\n return { productId: ea.item_id, price: ea.price, qty: ea.quantity };\n });\n if (orderItems.length > 0) {\n _shq.push(['onPurchase',\n {\n orderItems: orderItems,\n total: Total,\n orderId: orderId\n }]);\n } else {\n _shq.push(['onPurchase',\n {\n 'pageType': 'purchase',\n 'orderId': orderId,\n 'usebasket': true\n }]);\n }\n }\n };\n },\n categoryView: function categoryView() {\n setTimeout(function () {\n if (bouncex.website.pts === 'category') {\n var pathName = window.location.pathname;\n var catId = window.location.pathname.split('/')[2];\n if (catId && pathName.indexOf('/collections/') > -1) {\n _shq.push(['onCategory', {\n 'catName': catId,\n 'catId': catId\n }]);\n }\n }\n }, 1000);\n },\n addToCart: function addToCart(e) {\n var item = e && e[2] && e[2].items && e[2].items[0] ? e[2].items[0] : [];\n var rawProdId = bouncex.utils.getNestedProp('id', '', item);\n var prodId = rawProdId.split('_').pop();\n var price = bouncex.utils.getNestedProp('price', 0, item);\n var qty = bouncex.utils.getNestedProp('quantity', '', item);\n var atcArray = [];\n if (prodId && qty && price) {\n atcArray.push({\n 'ProductId': prodId,\n 'UnitPrice': Number(price),\n 'Quantity': qty\n });\n if (atcArray) {\n _shq.push(['onCartAdd', { 'Items': atcArray }]);\n }\n }\n },\n cartView: function cartView() {\n setTimeout(function () {\n var cartItemCount = +document.querySelector('[data-js-cart-count]').innerText;\n var cartDone = false;\n cartItemCount = bouncex.website.pts === 'cart' ? 0 : cartItemCount;\n var cartCounterChecker = setInterval(function () {\n var bagCount = +document.querySelector('[data-js-cart-count]').innerText;\n if (cartItemCount != bagCount && !cartDone) {\n const xhr = new XMLHttpRequest();\n xhr.open(\"GET\", \"/cart.js\");\n xhr.send();\n xhr.responseType = \"json\";\n xhr.onload = () => {\n if (xhr.readyState == 4 && xhr.status == 200) {\n const data = xhr.response;\n var Total = (data.total_price) / 100;\n var cartItems = data.items.map(function (ea) {\n return {\n 'ProductId': ea.id,\n 'UnitPrice': (ea.price) / 100,\n 'Quantity': ea.quantity\n };\n });\n if (cartItems && Total) {\n _shq.push(['onCartView', {\n Items: cartItems,\n Total: Total\n }]);\n }\n }\n\n };\n cartItemCount = bagCount;\n cartDone = true;\n } else if (cartItemCount === bagCount) {\n cartDone = false;\n }\n }, 1000);\n }, 1000);\n },\n processObserver(e) {\n\n while (e.length) {\n let event = e.shift();\n var action = event[1];\n\n if (action === 'add_to_cart') {\n this.addToCart(event);\n }\n }\n },\n arrayObserver() {\n if (!this.arrayObserverEnabled) {\n return;\n }\n bouncex.et.onTrue(\n () => {\n return bouncex.utils.getNestedProp('window._shq.loaded');\n },\n () => {\n _shq.ArrayObserver(window.dataLayer, (e) => {\n this.processObserver(e);\n }, { catchUp: true, filter: e => e[2] });\n }\n );\n },\n init() {\n\n if (this.testMode && !bouncex.testmode.bxdev) return;\n\n if (!bouncex.utils) {\n return;\n }\n bouncex.utils.segments = this;\n this.useIntercept();\n this.arrayObserver();\n this.cartView();\n this.categoryView();\n },\n};\n\nsegments.init();","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"Hit 'Send' to sign-up for automated, recurring Mara Hoffman mktg txts (like cart reminders) to this #, per terms.","eventSharing":false,"shqId":"f9evw4qc9b-1","enabled":1},"pde":true,"fmc":["US","CA"],"fme":true,"fmx":"","sdk":{"android":{"enabled":false,"enabledVersions":[],"eventModifications":null},"ios":{"enabled":false,"enabledVersions":[],"eventModifications":null}},"onsite":{"enabled":1},"ads":{"enabled":0},"pubs":{"enabled":0},"websdk":{"enabled":0},"ga4_property_id":"251051515","ga4_measurement_id":"G-8PTWNYE8VF","tag_state_domain":"api.bounceexchange.com"} ; bouncex.tag = 'tag3'; bouncex.$ = window.jQuery; bouncex.env = 'production'; bouncex.restrictedTlds = {"casl":{"ca":1},"gdpr":{"ad":1,"al":1,"at":1,"ax":1,"ba":1,"be":1,"bg":1,"by":1,"xn--90ais":1,"ch":1,"cy":1,"cz":1,"de":1,"dk":1,"ee":1,"es":1,"eu":1,"fi":1,"fo":1,"fr":1,"uk":1,"gb":1,"gg":1,"gi":1,"gr":1,"hr":1,"hu":1,"ie":1,"im":1,"is":1,"it":1,"je":1,"li":1,"lt":1,"lu":1,"lv":1,"mc":1,"md":1,"me":1,"mk":1,"xn--d1al":1,"mt":1,"nl":1,"no":1,"pl":1,"pt":1,"ro":1,"rs":1,"xn--90a3ac":1,"ru":1,"su":1,"xn--p1ai":1,"se":1,"si":1,"sj":1,"sk":1,"sm":1,"ua":1,"xn--j1amh":1,"va":1,"tr":1}}; bouncex.client = { supportsBrotli: 1 }; bouncex.assets = {"ads":"005ab6b05ecd8ae76686b26c919990d4","creativesBaseStyles":"a53944a2","gpsAuction":"bbb80866120d17013073bb6d284cbd6b","inbox":"75060a85c1a4aebcc6f779b9e84db722","onsite":"abbdf7a49be9b52b097917b7b527b262","sms":"e39203556bab2366e56296ce42e974a7","websdk":"e2d353d057b9c1d931d0252fa287890a"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_c81e76ee00d795b1eebf8d27949f8dc5.br.js'); runtime.setAttribute('async', 'async'); runtime.setAttribute('onload', 'bouncex.initializeTag()'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_315366948044b3a411f1670d0bc21a50.br.js'); script.setAttribute('async', 'async'); document.body.appendChild(script); var deviceGraphScript = document.createElement('script'); deviceGraphScript.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/cjs_min_3a843477d8e318f67237a66d0a58c542.js'); deviceGraphScript.setAttribute('async', 'async'); var dgAttrs = [{"Key":"id","Value":"c.js"},{"Key":"async","Value":"true"},{"Key":"data-apikey","Value":"2^HIykD"},{"Key":"data-cb","Value":"bouncex.dg.initPostDeviceGraph"},{"Key":"data-bx","Value":"1"},{"Key":"data-gm","Value":"1"},{"Key":"data-fire","Value":"1"}]; if (dgAttrs) { for (var i = 0; i < dgAttrs.length; i++) { deviceGraphScript.setAttribute(dgAttrs[i].Key, dgAttrs[i].Value); } } document.body.appendChild(deviceGraphScript); bouncex.initializeTag = function() {}; }; document.body.appendChild(runtime); } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();