Added simple test from example.

This commit is contained in:
Matt Gibbs
2015-08-10 11:48:03 -04:00
parent 6928294983
commit b39c9aba6f
+16
View File
@@ -0,0 +1,16 @@
///<reference path="shepherd.d.ts" />
var tour = new Shepherd.Tour({
defaults: {
classes: 'shepherd-theme-default'
}
});
tour.addStep('test-step', {
text: 'This is a test step being added to the test tour',
title: 'Test Step Title',
attachTo: {
element: '#button',
on: 'right'
}
});