2.2.0 • Published 5 years ago

ember-site-tour v2.2.0

Weekly downloads
20
License
MIT
Repository
github
Last release
5 years ago

ember-site-tour

Build Status Ember Observer Score

An ember add-on to implement site tours based on hopscotch.js.

Documentation: http://mydea.github.io/ember-site-tour/

Installation

ember install ember-site-tour

Basic Usage

// app/index/route.js

import Ember from 'ember';
import RouteTourMixin from 'ember-site-tour/mixins/route-tour';

export default Ember.Route.extend(RouteTourMixin, {});
{{! app/index/template.hbs }}

{{#tour-start-button}}
  <button>Start Tour</button>
{{/tour-start-button}}
// app/index/tour.js

export default [
  {
    target: '.first',
    title: 'First Step',
    content: `Lorem Ipsum...`
  },
  {
    target: '.second',
    title: 'Second Step',
    content: `Lorem Ipsum...`
  },
  {
    target: '.third',
    placement: 'bottom',
    title: 'Third Step',
    content: `Lorem Ipsum...`
  }
];

For more detailed instructions and examples, please visit the documentation.

2.2.0

5 years ago

2.1.0

5 years ago

2.0.2

5 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.5.0

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.1

8 years ago

0.1.0

8 years ago