Skip to content

Commit f5814fa

Browse files
committed
Use currentStep() instead of _currentStep in docs
1 parent 32f6c22 commit f5814fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/docs/intro/api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ If you want to prevent displaying the next / previous step, return `false` in `p
372372

373373
```javascript
374374
introJs().onbeforechange(function() {
375-
alert("before new step. Step: " + this._currentStep);
375+
alert("before new step. Step: " + this.currentStep());
376376

377377
// return false to stop displaying the next step
378378
// return false;

example/callbacks/onbeforechange.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ <h4>Section Six</h4>
7272
function startIntro(){
7373
var intro = introJs();
7474
intro.onbeforechange(function () {
75-
if (this._currentStep === 2) {
75+
if (this.currentStep() === 2) {
7676
alert('You cannot continue! :P')
7777
return false;
7878
}

0 commit comments

Comments
 (0)