mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-19 13:35:17 +01:00
32 lines
1,023 B
JavaScript
32 lines
1,023 B
JavaScript
|
/**
|
||
|
* Copyright (c) 2017-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
// Turn off ESLint for this file because it's sent down to users as-is.
|
||
|
/* eslint-disable */
|
||
|
window.addEventListener('load', function() {
|
||
|
// add event listener for all tab
|
||
|
document.querySelectorAll('.nav-link').forEach(function(el) {
|
||
|
el.addEventListener('click', function(e) {
|
||
|
const groupId = e.target.getAttribute('data-group');
|
||
|
document
|
||
|
.querySelectorAll(`.nav-link[data-group=${groupId}]`)
|
||
|
.forEach(function(el) {
|
||
|
el.classList.remove('active');
|
||
|
});
|
||
|
document
|
||
|
.querySelectorAll(`.tab-pane[data-group=${groupId}]`)
|
||
|
.forEach(function(el) {
|
||
|
el.classList.remove('active');
|
||
|
});
|
||
|
e.target.classList.add('active');
|
||
|
document
|
||
|
.querySelector(`#${e.target.getAttribute('data-tab')}`)
|
||
|
.classList.add('active');
|
||
|
});
|
||
|
});
|
||
|
});
|