mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
a3f0543f99
* Remove some `.es6` from comments where it does not matter * Use a post processor for transpilation This will allow us to eventually use the directory structure to transpile rather than the extension. * FIX: Some errors and clean up in confirm-new-email It would throw an error if the webauthn element wasn't present. Also I changed things so that no-module is not explicitly referenced. * Remove `no-module` Instead we allow a magic comment: `// discourse-skip-module` to prevent the asset pipeline from creating a module. * DEV: Enable babel transpilation based on directory If it's in `app/assets/javascripts/dicourse` it will be transpiled even without the `.es6` extension. * REFACTOR: Remove Tilt/ES6ModuleTranspiler
22 lines
854 B
JavaScript
22 lines
854 B
JavaScript
// discourse-skip-module
|
|
/* eslint-disable */
|
|
// prettier-ignore
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
/* eslint-enable */
|
|
|
|
(function() {
|
|
const gaDataElement = document.getElementById("data-ga-universal-analytics");
|
|
const gaJson = JSON.parse(gaDataElement.dataset.json);
|
|
|
|
window.ga("create", gaDataElement.dataset.trackingCode, gaJson);
|
|
if (gaDataElement.dataset.autoLinkDomains.length) {
|
|
const autoLinkDomains = gaDataElement.dataset.autoLinkDomains.split("|");
|
|
|
|
window.ga("require", "linker");
|
|
window.ga("linker:autoLink", autoLinkDomains);
|
|
}
|
|
})();
|