Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

index.js 1.2 KB

You have to be logged in to leave a comment. Sign In
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
  1. // Import our SCSS files so webpack will process them
  2. import '../stylesheets/index.scss'
  3. import displayPlatformSpecificContent from './display-platform-specific-content'
  4. import explorer from './explorer'
  5. import scrollUp from './scroll-up'
  6. import search from './search'
  7. import nav from './nav'
  8. import browserDateFormatter from 'browser-date-formatter'
  9. import sidebar from './sidebar'
  10. import wrapCodeTerms from './wrap-code-terms'
  11. import print from './print'
  12. import localization from './localization'
  13. import helpfulness from './helpfulness'
  14. import experiment from './experiment'
  15. import copyCode from './copy-code'
  16. import initializeEvents from './events'
  17. import filterCards from './filter-cards'
  18. import allArticles from './all-articles'
  19. import devToc from './dev-toc'
  20. import releaseNotes from './release-notes'
  21. import showMore from './show-more'
  22. import airgapLinks from './airgap-links'
  23. document.addEventListener('DOMContentLoaded', async () => {
  24. displayPlatformSpecificContent()
  25. explorer()
  26. scrollUp()
  27. search()
  28. nav()
  29. browserDateFormatter()
  30. sidebar()
  31. wrapCodeTerms()
  32. print()
  33. localization()
  34. copyCode()
  35. filterCards()
  36. allArticles()
  37. devToc()
  38. showMore()
  39. airgapLinks()
  40. releaseNotes()
  41. initializeEvents()
  42. experiment()
  43. helpfulness()
  44. })
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...