Skip to content

Commit fda9c68

Browse files
committed
fix(introjs): fixing ==
1 parent 7ea2180 commit fda9c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intro.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
code = (e.charCode === null) ? e.keyCode : e.charCode;
278278
}
279279

280-
if ((code === 'Escape' || code === 27) && self._options.exitOnEsc == true) {
280+
if ((code === 'Escape' || code === 27) && self._options.exitOnEsc === true) {
281281
//escape key pressed, exit the intro
282282
//check if exit callback is defined
283283
_exitIntro.call(self, targetElm);

0 commit comments

Comments
 (0)