Skip to content

Commit 0cd7726

Browse files
Implement interactivity on Betting Effects Edu website
Added interactivity to the Betting Effects Edu website.
1 parent b4e165b commit 0cd7726

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

.github/CODEOWNERS

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# Order is important. The LAST matching pattern has the MOST precedence.
2-
# gitignore style patterns are used, not globs.
3-
# https://docs.github.com/articles/about-codeowners
4-
# https://git-scm.com/docs/gitignore
5-
6-
# Site Policy
7-
content/site-policy/ @github/site-policy-admins
8-
9-
# Enterprise
10-
data/release-notes/**/*.yml @github/docs-content-enterprise
11-
src/ghes-releases/lib/enterprise-dates.json @github/docs-content-enterprise
12-
13-
# Requires review of #actions-oidc-integration, docs-engineering/issues/1506
14-
# content/actions/deployment/security-hardening-your-deployments/** @github/oidc
1+
// Add interactivity here
2+
document.addEventListener('DOMContentLoaded', function() {
3+
console.log('Betting Effects Edu website loaded');
4+
5+
// Add click event to CTA button
6+
const ctaBtn = document.querySelector('.cta-btn');
7+
if (ctaBtn) {
8+
ctaBtn.addEventListener('click', function() {
9+
console.log('Learn More clicked');
10+
// You can add navigation or modal here
11+
});
12+
}
13+
});

0 commit comments

Comments
 (0)