ga.js 403 B

12345678910111213
  1. const _gaq = [
  2. ["_setAccount", "UA-XXXXXXXX-X"],
  3. ["_trackPageview"]
  4. ];
  5. (function () {
  6. const ga = document.createElement("script");
  7. ga.type = "text/javascript";
  8. ga.async = true;
  9. ga.src = (document.location.protocol === "https:" ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js";
  10. const s = document.getElementsByTagName("script")[0];
  11. s.parentNode.insertBefore(ga, s);
  12. }());