()
| 169 | ]; |
| 170 | |
| 171 | function startIntro(){ |
| 172 | |
| 173 | document.getElementById("overview").setAttribute("style", "display: none"); |
| 174 | document.getElementById("walkthrough").setAttribute("style", "display: inline-block"); |
| 175 | |
| 176 | var intro = introJs(); |
| 177 | intro.setOptions({ |
| 178 | steps: steps, |
| 179 | showBullets: false, |
| 180 | showButtons: false, |
| 181 | showProgress: true, |
| 182 | exitOnOverlayClick: false, |
| 183 | showStepNumbers: false, |
| 184 | keyboardNavigation: true |
| 185 | }); |
| 186 | |
| 187 | intro.start(); |
| 188 | } |
| 189 | |
| 190 | |
| 191 | // Add onclick="step('');" to div with tool |
nothing calls this directly
no test coverage detected
searching dependent graphs…