diff --git a/services/web/app/views/layout.jade b/services/web/app/views/layout.jade index ae0e7550be..382c534f6e 100644 --- a/services/web/app/views/layout.jade +++ b/services/web/app/views/layout.jade @@ -48,6 +48,18 @@ html(itemscope, itemtype='http://schema.org/Product') script(type='text/javascript'). window.ga = function() { console.log("Sending to GA", arguments) }; + // Heap Analytics + if (settings.analytics.heap && session && session.user) + script(type="text/javascript"). + window.heap=window.heap||[],heap.load=function(e,t){window.heap.appid=e,window.heap.config=t=t||{};var n=t.forceSSL||"https:"===document.location.protocol,a=document.createElement("script");a.type="text/javascript",a.async=!0,a.src=(n?"https:":"http:")+"//cdn.heapanalytics.com/js/heap-"+e+".js";var o=document.getElementsByTagName("script")[0];o.parentNode.insertBefore(a,o);for(var r=function(e){return function(){heap.push([e].concat(Array.prototype.slice.call(arguments,0)))}},p=["clearEventProperties","identify","setEventProperties","track","unsetEventProperty"],c=0;c ga('send', 'event', category, action, label, value) + event_name = "#{action}-#{category}" + if window?.heap and window?.heap?.track + window.heap?.track(event_name, {label: label, value: value}) } @@ -14,4 +17,3 @@ define [ href = $(e.target).attr("href") if href? ga('send', 'event', 'navigation', 'top menu bar', href) -