@@ -15,7 +15,7 @@ Intro.js can be added to your site in three simple steps:
15
15
For example:
16
16
17
17
``` 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 >
19
19
````
20
20
21
21
See all attributes [here](https://github.com/usablica/intro.js/#attributes).
@@ -251,7 +251,7 @@ introJs().onbeforechange(function(targetElement) {
251
251
252
252
###Attributes:
253
253
- `data-intro`: The tooltip text of step
254
- - `data-step`: The number of step
254
+ - `data-step`: Optionally define the number (priority) of step
255
255
- `data-tooltipClass`: Optionally define a CSS class for tooltip
256
256
- `data-position`: Optionally define the position of tooltip, `top`, `left`, `right` or `bottom`. Default is `bottom`
257
257
@@ -266,7 +266,10 @@ introJs().onbeforechange(function(targetElement) {
266
266
- `tooltipClass`: Adding CSS class to all tooltips
267
267
- `exitOnEsc`: Exit introduction when pressing Escape button, `true` or `false`
268
268
- `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`
270
273
271
274
See [setOption](https://github.com/usablica/intro.js/#introjssetoptionoption-value) to see an example.
272
275
@@ -305,12 +308,22 @@ Want to learn faster and easier? Here we have **Instant IntroJs**, Packt Publish
305
308
</p >
306
309
307
310
## Roadmap
308
- - More browser compatibility
311
+ - Add introduction without focusing on elements
309
312
- Fix problems with `position: fixed` and other positions
310
313
- Provide more examples
311
314
312
315
## Release History
313
316
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
+
314
327
* **v0.5.0** - 2013-07-19
315
328
- Add CSS class option for tooltips (And tooltip buttons also)
316
329
- Add RTL version
0 commit comments