Skip to content

Commit

Permalink
Patch fix for stacking events
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Hwang committed Jun 17, 2015
1 parent b719706 commit 2f8b34e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.1.2 & v1.1.3
- Fix stacking event listeners

## v1.1.1
- Pointer event none for arros

## v1.1.0
- Update `Tether` to version 1
- Bump all dependencies
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether-shepherd",
"version": "1.1.2",
"version": "1.1.3",
"homepage": "https://github.com/HubSpot/shepherd",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down
4 changes: 3 additions & 1 deletion dist/js/shepherd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! tether-shepherd 1.1.2 */
/*! tether-shepherd 1.1.3 */

(function(root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down Expand Up @@ -404,6 +404,8 @@ var Step = (function (_Evented) {

document.body.appendChild(this.el);

this.setupTether();

if (this.options.advanceOn) {
this.bindAdvance();
}
Expand Down
2 changes: 1 addition & 1 deletion dist/js/shepherd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether-shepherd",
"version": "1.1.2",
"version": "1.1.3",
"description": "Guide your users through a tour of your app.",
"authors": [
"Adam Schwartz <adam.flynn.schwartz@gmail.com>",
Expand Down
2 changes: 2 additions & 0 deletions src/js/shepherd.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,8 @@ class Step extends Evented {

document.body.appendChild(this.el);

this.setupTether();

if (this.options.advanceOn) {
this.bindAdvance();
}
Expand Down

0 comments on commit 2f8b34e

Please sign in to comment.