-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
22 lines (19 loc) · 1 KB
/
script.js
File metadata and controls
22 lines (19 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// __ __ ____ ____/ /___ / __/(_)____ ___ ____/ /
// / / / // __ \ / __ // _ \ / /_ / // __ \ / _ \ / __ /
// / /_/ // / / // /_/ // __// __// // / / // __// /_/ /
// \__,_//_/ /_/ \__,_/ \___//_/ /_//_/ /_/_\___/ \__,_/
// _____ ____ ____ / /_ _____ ____ / /
// / ___// __ \ / __ \ / __// ___// __ \ / /
// / /__ / /_/ // / / // /_ / / / /_/ // /
// \___/_\____//_/_/_/ \__//_/_ __\____//_/ _____ ___
// / ___// _ \ / __ `// / / // _ \ / __ \ / ___// _ \
// (__ )/ __// /_/ // /_/ // __// / / // /__ / __/
// /____/ \___/ \__, / \__,_/ \___//_/ /_/ \___/ \___/
// /_/
var left = document.getElementsByClassName('button-1')[0];
let right = document.getElementsByClassName('button-2')[0];
let status = document.getElementsByClassName('footer-text')[0];
const changeButton = e => {
status.innerText = e.innerText;
}