Skip to content

Commit a4ddd63

Browse files
committed
Deploy website
Deploy website version based on f482df241234f5c791240199e3e80873ea096ce3
1 parent f2f5526 commit a4ddd63

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

css/prism.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2017-present, Facebook, Inc.
2+
* Copyright (c) Facebook, Inc. and its affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.

js/codetabs.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
/**
2-
* Copyright (c) 2017-present, Facebook, Inc.
2+
* Copyright (c) Facebook, Inc. and its affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*/
77
// Turn off ESLint for this file because it's sent down to users as-is.
88

99
/* eslint-disable */
10-
window.addEventListener('load', function() {
10+
window.addEventListener('load', function () {
1111
// add event listener for all tab
12-
document.querySelectorAll('.nav-link').forEach(function(el) {
13-
el.addEventListener('click', function(e) {
12+
document.querySelectorAll('.nav-link').forEach(function (el) {
13+
el.addEventListener('click', function (e) {
1414
var groupId = e.target.getAttribute('data-group');
1515
document
1616
.querySelectorAll('.nav-link[data-group='.concat(groupId, ']'))
17-
.forEach(function(el) {
17+
.forEach(function (el) {
1818
el.classList.remove('active');
1919
});
2020
document
2121
.querySelectorAll('.tab-pane[data-group='.concat(groupId, ']'))
22-
.forEach(function(el) {
22+
.forEach(function (el) {
2323
el.classList.remove('active');
2424
});
2525
e.target.classList.add('active');

js/scrollSpy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2017-present, Facebook, Inc.
2+
* Copyright (c) Facebook, Inc. and its affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
@@ -21,7 +21,7 @@
2121
return;
2222
}
2323

24-
timer = setTimeout(function() {
24+
timer = setTimeout(function () {
2525
timer = null;
2626
var activeNavFound = false;
2727
var headings = findHeadings(); // toc nav anchors
@@ -75,7 +75,7 @@
7575

7676
document.addEventListener('scroll', onScroll);
7777
document.addEventListener('resize', onScroll);
78-
document.addEventListener('DOMContentLoaded', function() {
78+
document.addEventListener('DOMContentLoaded', function () {
7979
// Cache the headings once the page has fully loaded.
8080
headingsCache = findHeadings();
8181
onScroll();

0 commit comments

Comments
 (0)