50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
/*
|
|
Template Name: Minton - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: CoderThemes
|
|
Website: https://coderthemes.com/
|
|
Contact: support@coderthemes.com
|
|
File: Tour init js
|
|
*/
|
|
|
|
$(document).ready(function () {
|
|
|
|
// Define the tour!
|
|
var tour = {
|
|
id: "my-intro",
|
|
steps: [
|
|
{
|
|
target: "logo-tour",
|
|
title: "Logo Here",
|
|
content: "You can find here status of user who's currently online.",
|
|
placement: 'bottom',
|
|
yOffset: 10
|
|
},
|
|
{
|
|
target: 'display-title-tour',
|
|
title: "Display Text",
|
|
content: "Click on the button and make sidebar navigation small.",
|
|
placement: 'top',
|
|
zindex: 9999
|
|
},
|
|
{
|
|
target: 'page-title-tour',
|
|
title: "User settings",
|
|
content: "You can edit you profile info here.",
|
|
placement: 'bottom',
|
|
zindex: 999
|
|
},
|
|
{
|
|
target: 'thankyou-tour',
|
|
title: "Thank you !",
|
|
content: "Here you can change theme skins and other features.",
|
|
placement: 'top',
|
|
zindex: 999
|
|
}
|
|
],
|
|
showPrevButton: true
|
|
};
|
|
|
|
// Start the tour!
|
|
hopscotch.startTour(tour);
|
|
});
|