JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q55172F
  • License ISC

"# open-walkthrough"

Package Exports

  • open-walkthrough

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (open-walkthrough) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

"# open-walkthrough"

this is a client side website walkthrough executor engine.

installation: npm i open-walkthrough

usage:

var walkThoughExecutor = require("./src/walkThoughExecutor"); var actionTypes = require("./src/actionTypes");

var action1 = { selector: '#yo1', type: actionTypes.ACTION_POPOVER, data: { title: "Click Here", description: "Get in Shape" } }; var action2 = { selector: '#yo2', type: actionTypes.ACTION_POPOVER, data: { title: "Click Here", description: "Get in Shape" } }; var action3 = { selector: '#yo3', type: actionTypes.ACTION_POPOVER, data: { title: "Click Here", description: "Get in Shape" } }; var action4 = { selector: '#yo4', type: actionTypes.ACTION_POPOVER, data: { title: "Click Here", description: "Get in Shape" } };

var actions = [action1,action2,action3,action4];

walkThoughExecutor.setActions(actions); walkThoughExecutor.run();