Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b46bbcd

Browse files
author
bozdoz
committed
v2.9.3 - fix to skip and done, exiting intro; resolves usablica#832 and resolves usablica#843 and resolves usablica#829
1 parent 918b687 commit b46bbcd

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Intro.js v2.9.2
1+
# Intro.js v2.9.3
22

33
[![Build Status](https://travis-ci.org/usablica/intro.js.svg?branch=master)](https://travis-ci.org/usablica/intro.js)
44

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Release History
22

3+
* **v2.9.3** - 2018-04-24
4+
- hotfix to skipping and exiting the intro
5+
36
* **v2.9.2** - 2018-04-24
47
- hotfix to add any minified files that might have been dependencies to the npm package
58

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "intro.js",
33
"repo": "usablica/intro.js",
44
"description": "Better introductions for websites and features with a step-by-step guide for your projects",
5-
"version": "2.9.2",
5+
"version": "2.9.3",
66
"main": "intro.js",
77
"scripts": [
88
"intro.js"

intro.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Intro.js v2.9.2
2+
* Intro.js v2.9.3
33
* https://github.com/usablica/intro.js
44
*
55
* Copyright (C) 2017 Afshin Mehrabani (@afshinmeh)
@@ -32,7 +32,7 @@
3232
}
3333
})(function () {
3434
//Default config/variables
35-
var VERSION = '2.9.2';
35+
var VERSION = '2.9.3';
3636

3737
/**
3838
* IntroJs main class
@@ -1263,7 +1263,10 @@
12631263
self._introExitCallback.call(self);
12641264
}
12651265

1266-
self._introSkipCallback.call(self);
1266+
if (typeof(self._introSkipCallback) === 'function') {
1267+
self._introSkipCallback.call(self);
1268+
}
1269+
12671270
_exitIntro.call(self, self._targetElement);
12681271
};
12691272

minified/intro.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "intro.js",
33
"description": "Better introductions for websites and features with a step-by-step guide for your projects",
4-
"version": "2.9.2",
4+
"version": "2.9.3",
55
"author": "Afshin Mehrabani <[email protected]>",
66
"homepage": "http://introjs.com",
77
"repository": {

0 commit comments

Comments
 (0)