react-hotjar
Advanced tools
{ | ||
"name": "react-hotjar", | ||
"version": "2.0.4", | ||
"version": "2.1.0", | ||
"description": "Small component to implement Hotjar into your react application", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -9,8 +9,13 @@ module.exports = function(id, sv) { | ||
h._hjSettings = { hjid: id, hjsv: sv }; | ||
a = o.getElementsByTagName('head')[0]; | ||
r = o.createElement('script'); | ||
r.async = 1; | ||
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv; | ||
a.appendChild(r); | ||
h._scriptPath = t + h._hjSettings.hjid + j + h._hjSettings.hjsv; | ||
if(!document.querySelector( | ||
'script[src*="' + h._scriptPath + '"]', | ||
)){ | ||
a = o.getElementsByTagName('head')[0]; | ||
r = o.createElement('script'); | ||
r.async = 1; | ||
r.src = h._scriptPath; | ||
a.appendChild(r); | ||
} | ||
})(window, document, '//static.hotjar.com/c/hotjar-', '.js?sv='); | ||
}; |
3721
3.36%35
16.67%