Skip to content

Commit ba391fb

Browse files
committed
updates github rep URL
1 parent 608058b commit ba391fb

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

demo/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313

1414
body {
15-
font-family: 'BentonSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
15+
font-family: 'BentonSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
1616
'Helvetica Neue', Arial, sans-serif;
1717
background: #0d1117;
1818
min-height: 100vh;
@@ -385,13 +385,13 @@
385385
<h1>🏆 Tournament Brackets</h1>
386386
<p class="subtitle">Modern, Framework-Agnostic Bracket Library</p>
387387
<div class="header-links">
388-
<a href="https://github.com/erik5388/jquery.gracket.js" class="header-link" target="_blank">
388+
<a href="https://github.com/Zettersten/jquery.gracket.js" class="header-link" target="_blank">
389389
<span></span> GitHub
390390
</a>
391391
<a href="https://www.npmjs.com/package/gracket" class="header-link" target="_blank">
392392
<span>📦</span> NPM
393393
</a>
394-
<a href="https://github.com/erik5388/jquery.gracket.js#readme" class="header-link" target="_blank">
394+
<a href="https://github.com/Zettersten/jquery.gracket.js#readme" class="header-link" target="_blank">
395395
<span>📖</span> Docs
396396
</a>
397397
</div>
@@ -514,10 +514,10 @@ <h3>CDN (via unpkg)</h3>
514514
&lt;/head&gt;
515515
&lt;body&gt;
516516
&lt;div id="bracket"&gt;&lt;/div&gt;
517-
517+
518518
&lt;script type="module"&gt;
519519
import { Gracket } from 'https://unpkg.com/gracket';
520-
520+
521521
new Gracket('#bracket', {
522522
src: tournamentData,
523523
cornerRadius: 15
@@ -563,9 +563,9 @@ <h3>♿ Accessible</h3>
563563
<footer>
564564
<p>
565565
Made with ❤️ by Erik Zettersten<br>
566-
<a href="https://github.com/erik5388/jquery.gracket.js">GitHub</a> |
567-
<a href="https://www.npmjs.com/package/gracket">NPM</a> |
568-
<a href="https://github.com/erik5388/jquery.gracket.js#readme">Documentation</a>
566+
<a href="https://github.com/Zettersten/jquery.gracket.js">GitHub</a> |
567+
<a href="https://www.npmjs.com/package/gracket">NPM</a> |
568+
<a href="https://github.com/Zettersten/jquery.gracket.js#readme">Documentation</a>
569569
</p>
570570
<p style="margin-top: 1rem; font-size: 0.9rem;">
571571
Version 2.0.0 | MIT License | Built with TypeScript & Vite
@@ -606,13 +606,13 @@ <h3>♿ Accessible</h3>
606606
if (!container) return;
607607

608608
currentData = data;
609-
609+
610610
gracket = new Gracket(container, {
611611
src: data,
612612
cornerRadius: 15,
613613
canvasLineColor: '#667eea',
614614
canvasLineWidth: 2,
615-
roundLabels: data === sampleTournamentData
615+
roundLabels: data === sampleTournamentData
616616
? ['Round 1', 'Round 2', 'Semi Finals', 'Finals', 'Winner']
617617
: data.length === 3
618618
? ['Semi Finals', 'Finals', 'Champion']
@@ -660,7 +660,7 @@ <h3>♿ Accessible</h3>
660660
canvasLineColor: styleToggle ? '#764ba2' : '#667eea',
661661
canvasLineWidth: styleToggle ? 3 : 2,
662662
canvasLineCap: styleToggle ? 'square' : 'round',
663-
roundLabels: currentData === sampleTournamentData
663+
roundLabels: currentData === sampleTournamentData
664664
? ['Round 1', 'Round 2', 'Semi Finals', 'Finals', 'Winner']
665665
: currentData.length === 3
666666
? ['Semi Finals', 'Finals', 'Champion']

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
"license": "MIT",
5757
"repository": {
5858
"type": "git",
59-
"url": "https://github.com/erik5388/jquery.gracket.js.git"
59+
"url": "https://github.com/Zettersten/jquery.gracket.js.git"
6060
},
6161
"bugs": {
62-
"url": "https://github.com/erik5388/jquery.gracket.js/issues"
62+
"url": "https://github.com/Zettersten/jquery.gracket.js/issues"
6363
},
64-
"homepage": "https://github.com/erik5388/jquery.gracket.js#readme",
64+
"homepage": "https://github.com/Zettersten/jquery.gracket.js#readme",
6565
"devDependencies": {
6666
"@eslint/js": "^9.15.0",
6767
"@types/eslint__js": "^8.42.3",

0 commit comments

Comments
 (0)