-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquickstart.js
22 lines (15 loc) · 1.03 KB
/
quickstart.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
document.querySelector('observationsMatrix > table')
.setAttribute('data-Intro', 'These are your observations');
document.querySelector('observationsMatrix button')
.setAttribute('data-Intro', 'You can remove an observation pressing on this button');
document.querySelector('observationsMatrix > table > tr:last-child')
.setAttribute('data-Intro', 'You write a new observation on the last row...');
document.querySelector('observationsMatrix > table > tr:last-child button:last-child')
.setAttribute('data-Intro', '...and add it pressing on the plus button');
document.querySelector('deltainput')
.setAttribute('data-Intro', 'Here you can set the delta coefficient...');
document.querySelector('smoothnessinput')
.setAttribute('data-Intro', '...while here you can set the normalization factor (it cannot be less than 0.01 if the system is rank deficient)');
document.querySelector('#graph')
.setAttribute('data-Intro', 'The graph is updated automatically every time something has been changed');
introJs().start();