Skip to content

Commit 20c1b17

Browse files
committed
Merge branch 'master' of https://github.com/usablica/intro.js
2 parents 71583df + 2408093 commit 20c1b17

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Intro.js can be added to your site in three simple steps:
1515
For example:
1616

1717
```html
18-
<a href='http://google.com/' data-intro='Hello step one!' data-step='1'></a>
18+
<a href='http://google.com/' data-intro='Hello step one!'></a>
1919
````
2020

2121
See all attributes [here](https://github.com/usablica/intro.js/#attributes).
@@ -251,7 +251,7 @@ introJs().onbeforechange(function(targetElement) {
251251

252252
###Attributes:
253253
- `data-intro`: The tooltip text of step
254-
- `data-step`: The number of step
254+
- `data-step`: Optionally define the number (priority) of step
255255
- `data-tooltipClass`: Optionally define a CSS class for tooltip
256256
- `data-position`: Optionally define the position of tooltip, `top`, `left`, `right` or `bottom`. Default is `bottom`
257257

@@ -266,7 +266,10 @@ introJs().onbeforechange(function(targetElement) {
266266
- `tooltipClass`: Adding CSS class to all tooltips
267267
- `exitOnEsc`: Exit introduction when pressing Escape button, `true` or `false`
268268
- `exitOnOverlayClick`: Exit introduction when clicking on overlay layer, `true` or `false`
269-
- `showStepNumbers`: Show steps number in the red circle or not, `true` of `false`
269+
- `showStepNumbers`: Show steps number in the red circle or not, `true` or `false`
270+
- `keyboardNavigation`: Navigating with keyboard or not, `true` or `false`
271+
- `showButtons`: Show introduction navigation buttons or not, `true` or `false`
272+
- `showBullets`: Show introduction bullets or not, `true` or `false`
270273

271274
See [setOption](https://github.com/usablica/intro.js/#introjssetoptionoption-value) to see an example.
272275

@@ -305,12 +308,22 @@ Want to learn faster and easier? Here we have **Instant IntroJs**, Packt Publish
305308
</p>
306309

307310
## Roadmap
308-
- More browser compatibility
311+
- Add introduction without focusing on elements
309312
- Fix problems with `position: fixed` and other positions
310313
- Provide more examples
311314

312315
## Release History
313316

317+
* **v0.6.0** - 2013-11-13
318+
- Add step bullets with navigating
319+
- Add option to hide introduction navigating buttons
320+
- Make keyboard navigation optional
321+
- Making `data-step` optional with elements
322+
- Fix scroll issue when scrolling down to elements bigger than window
323+
- Fix Chrome version 30.0.1599.101 issue with hiding step numbers
324+
- Fix incorrect calling onExit callback when user clicks on overlay layer
325+
- Fix coding styles and improvement in performance
326+
314327
* **v0.5.0** - 2013-07-19
315328
- Add CSS class option for tooltips (And tooltip buttons also)
316329
- Add RTL version

package.json

Lines changed: 2 additions & 2 deletions
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": "0.5.0",
4+
"version": "0.6.0",
55
"author": "Afshin Mehrabani <[email protected]>",
66
"repository": {
77
"type": "git",
@@ -14,4 +14,4 @@
1414
"node >=0.1.90"
1515
],
1616
"main": "intro.js"
17-
}
17+
}

0 commit comments

Comments
 (0)