You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 8, 2018. It is now read-only.
Turning off layered numbers was not working for me (at least in Chrome version 30.0.1599.101). The problem was that the statements for setting the "showStepNumbers" option would always execute, even when its value was set to "false".
Setting the conditional if statement to be compared with the "true" value explicitly fixed the problem. So:
//add helper layer number
if (this._options.showStepNumbers == true) {
...
}
0 commit comments