We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74260f8 commit 34c7966Copy full SHA for 34c7966
docs/static/main.js
@@ -1,13 +1,13 @@
1
-
2
-const quote = "Learn once, run anywhere";
3
4
window.addEventListener('load', function () {
5
var subtitle = document.getElementsByClassName("_subtitle");
6
7
// In case adding more than once!
8
if (subtitle.length != 0)
9
return;
10
+ // Place it here to avoid error: `Identifier 'xxx' has already been declared`.
+ const quote = "Learn once, run anywhere";
+
11
const titles = document.getElementsByClassName("gdoc-brand__title");
12
13
const title = titles[0]
0 commit comments