aboutsummaryrefslogtreecommitdiff
path: root/src/GoatCounter.js
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-15 15:25:48 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-15 15:25:48 -0500
commita4fa00b052cb7d618125983efc626d2af62f9919 (patch)
tree978d7f257b49859aaf488fe11e81263644b0a966 /src/GoatCounter.js
parent668f0ee2dcc2bea3647e43db019ec3d9ee61e00e (diff)
make report issues link blue
Diffstat (limited to 'src/GoatCounter.js')
-rw-r--r--src/GoatCounter.js38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/GoatCounter.js b/src/GoatCounter.js
index 15ec5ef..07a768a 100644
--- a/src/GoatCounter.js
+++ b/src/GoatCounter.js
@@ -1,26 +1,26 @@
-import React from 'react'
+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);
- }
+ 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)
+ componentWillUnmount() {
+ const script = window.document.getElementById("goatcounter");
+ if (script) {
+ script.parentNode.removeChild(script);
+ }
}
- }
- render () {
- return null
- }
+ render() {
+ return null;
+ }
}
-export default GoatCounter \ No newline at end of file
+export default GoatCounter;