Refactor heap analytics

This commit is contained in:
Shane Kilkelly 2016-06-16 10:17:36 +01:00
parent 5ce0100371
commit 9919f5f44a
3 changed files with 2 additions and 8 deletions

View file

@ -49,7 +49,7 @@ html(itemscope, itemtype='http://schema.org/Product')
window.ga = function() { console.log("Sending to GA", arguments) };
// Heap Analytics
if (settings.analytics.heap && session && session.user)
if (settings.analytics && 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<p.length;c++)heap[p[c]]=r(p[c])};
heap.load("#{settings.analytics.heap.token}");

View file

@ -41,8 +41,3 @@ footer.site-footer
a(href=item.url, class=item.class) !{item.text}
else
| !{item.text}
li
a(href="https://heapanalytics.com/?utm_source=badge")
img(style="width:108px;height:41px" src="//heapanalytics.com/img/badgeLight.png" alt="Heap | Mobile and Web Analytics")

View file

@ -7,8 +7,7 @@ define [
send: (category, action, label, value)->
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})
window?.heap?.track?(event_name, {label, value})
}