diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-07-11 17:10:23 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-07-11 17:10:23 -0400 |
commit | 935ef7d2f76cca7bc1f9840dc357de85f93a1ec2 (patch) | |
tree | cb8ee298a747d6084107266e5d2882e60a6b5daa /src/GoatCounter.js | |
parent | 3694bf061ecfe0f6733a0cb9028d044dfc8cf9d2 (diff) |
Update for new dashboard frontend
Diffstat (limited to 'src/GoatCounter.js')
-rw-r--r-- | src/GoatCounter.js | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/GoatCounter.js b/src/GoatCounter.js deleted file mode 100644 index 07a768a..0000000 --- a/src/GoatCounter.js +++ /dev/null @@ -1,26 +0,0 @@ -import React from "react"; - -class GoatCounter extends React.Component { - componentDidMount() { - window.counter = "https://rcd.goatcounter.com/count"; - const script = window.document.createElement("script"); - script.async = 1; - script.src = "https://gc.zgo.at/count.js"; - script.id = "goatcounter"; - script.setAttribute("data-goatcounter", "https://rcd.goatcounter.com/count"); - (window.document.head || window.document.body).appendChild(script); - } - - componentWillUnmount() { - const script = window.document.getElementById("goatcounter"); - if (script) { - script.parentNode.removeChild(script); - } - } - - render() { - return null; - } -} - -export default GoatCounter; |