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 a3f4c5e commit 14c399cCopy full SHA for 14c399c
templates/repo/empty.tmpl
@@ -47,9 +47,10 @@ git push -u origin {{.Repository.DefaultBranch}}</code></pre>
47
</div>
48
49
<script defer>
50
+ /* eslint-disable no-undef */
51
const cloneUrls = document.getElementsByClassName('clone-url');
52
if (cloneUrls) {
- for (var i = 0; i < cloneUrls.length; i++) {
53
+ for (let i = 0; i < cloneUrls.length; i++) {
54
cloneUrls[i].textContent = (isSSH ? sshButton : httpsButton).dataset.link;
55
}
56
0 commit comments