Skip to content

Commit ddfb90d

Browse files
authored
Add files via upload
1 parent 8604ae3 commit ddfb90d

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

dist/lcwTourGuide.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*!
2+
* lcwTourGuide v1.0.0
3+
* Author: Zaid Bin Khalid
4+
* A lightweight JavaScript guided tour library
5+
*/
6+
17
class lcwTourGuide {
28
constructor(options = {}) {
39
this.steps = Array.from(document.querySelectorAll('[data-lcw-tour-step]')).sort((a, b) => a.dataset.tourStep - b.dataset.tourStep);

dist/lcwTourGuide.min.js

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lcwTourGuide.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*!
2+
* lcwTourGuide v1.0.0
3+
* Author: Zaid Bin Khalid
4+
* A lightweight JavaScript guided tour library
5+
*/
6+
17
class lcwTourGuide {
28
constructor(options = {}) {
39
this.steps = Array.from(document.querySelectorAll('[data-lcw-tour-step]')).sort((a, b) => a.dataset.tourStep - b.dataset.tourStep);

0 commit comments

Comments
 (0)