forked from github/docs
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
Latest commit
45 lines (44 loc) · 1.23 KB
/
Copy pathindex.js
File metadata and controls
45 lines (44 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Import our SCSS files so webpack will process them
import'../stylesheets/index.scss'
importdisplayPlatformSpecificContentfrom'./display-platform-specific-content'
importexplorerfrom'./explorer'
importscrollUpfrom'./scroll-up'
importsearchfrom'./search'
importnavfrom'./nav'
importbrowserDateFormatterfrom'browser-date-formatter'
importsidebarfrom'./sidebar'
importwrapCodeTermsfrom'./wrap-code-terms'
importprintfrom'./print'
importlocalizationfrom'./localization'
importhelpfulnessfrom'./helpfulness'
importexperimentfrom'./experiment'
importcopyCodefrom'./copy-code'
importinitializeEventsfrom'./events'
importfilterCardsfrom'./filter-cards'
importallArticlesfrom'./all-articles'
importdevTocfrom'./dev-toc'
importreleaseNotesfrom'./release-notes'
importshowMorefrom'./show-more'
importairgapLinksfrom'./airgap-links'
document.addEventListener('DOMContentLoaded',async()=>{
displayPlatformSpecificContent()
explorer()
scrollUp()
search()
nav()
browserDateFormatter()
sidebar()
wrapCodeTerms()
print()
localization()
copyCode()
filterCards()
allArticles()
devToc()
showMore()
airgapLinks()
releaseNotes()
initializeEvents()
experiment()
helpfulness()
})