Last active
July 28, 2020 06:56
-
-
Save r-brown/046eb96c8d7b765b05803424e8416f23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1) Open website | |
// e.g. https://netlicensing.io | |
// 2) Open browser console | |
// - Firefox: Tools > Web Developer > Web Console | |
// - Chrome: More Tools > Developer Tools | |
// - Safari: Develop > Show JavaScript Console | |
// 3) Load GuideChimp scripts and styles | |
fetch('https://io.labs64.com/GuideChimp/docs/samples/bootstrap-browser-console.js') | |
.then(response => response.text()) | |
.then(text => eval(text)); | |
// 4) (optional) Load GuideChimp built-in plugins | |
fetch('https://io.labs64.com/GuideChimp/docs/samples/bootstrap-plugins.js') | |
.then(response => response.text()) | |
.then(text => eval(text)); | |
// 5) Run tour | |
fetch('https://io.labs64.com/GuideChimp/docs/tours/netlicensing.io.js') | |
.then(response => response.text()) | |
.then(text => eval(text)); | |
// Run tour | |
GuideChimp(tour).start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
References: