In firefox on load and on scroll I receive this error in console:
TypeError: Property 'handleEvent' is not callable.
I have debugged a little and found the reason.
util/dom.js
addStepEventListeners() lines 82, 83
https://github.com/shipshapecode/shepherd/blob/master/src/js/utils/dom.js#L82
this._onScreenChange is null. You can't register null handler.
In firefox on load and on scroll I receive this error in console:
I have debugged a little and found the reason.
util/dom.js
addStepEventListeners() lines 82, 83
https://github.com/shipshapecode/shepherd/blob/master/src/js/utils/dom.js#L82
this._onScreenChange is null. You can't register null handler.