FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github-docs/javascripts/index.js at main · 0xdevalias/github-docs · GitHub
0xdevalias
/
github-docs
Public
forked from
github/docs
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
github-docs
/
javascripts
/
index.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (42 loc) · 1.33 KB
Breadcrumbs
github-docs
/
javascripts
/
index.js
Copy path
File metadata and controls
43 lines (42 loc) · 1.33 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// Import our SCSS files so webpack will process them
import
'../stylesheets/index.scss'
import
displayPlatformSpecificContent
from
'./display-platform-specific-content'
import
explorer
from
'./explorer'
import
search
from
'./search'
import
nav
from
'./nav'
import
browserDateFormatter
from
'browser-date-formatter'
import
sidebar
from
'./sidebar'
import
wrapCodeTerms
from
'./wrap-code-terms'
import
print
from
'./print'
import
localization
from
'./localization'
import
helpfulness
from
'./helpfulness'
import
experiment
from
'./experiment'
import
copyCode
from
'./copy-code'
import
{
fillCsrf
}
from
'./get-csrf'
import
initializeEvents
from
'./events'
import
filterCards
from
'./filter-cards'
import
allArticles
from
'./all-articles'
import
devToc
from
'./dev-toc'
import
releaseNotes
from
'./release-notes'
import
showMore
from
'./show-more'
document
.
addEventListener
(
'DOMContentLoaded'
,
async
(
)
=>
{
displayPlatformSpecificContent
(
)
explorer
(
)
search
(
)
nav
(
)
browserDateFormatter
(
)
sidebar
(
)
wrapCodeTerms
(
)
print
(
)
localization
(
)
copyCode
(
)
filterCards
(
)
allArticles
(
)
devToc
(
)
showMore
(
)
await
fillCsrf
(
)
// this must complete before any POST calls
initializeEvents
(
)
// requires fillCsrf to complete
experiment
(
)
// requires fillCsrf to complete
helpfulness
(
)
// requires fillCsrf to complete
releaseNotes
(
)
}
)
Back
|
FazBrowse Home
|
New Git URL