/** * Theme: Ninja Admin Template * Author: NinjaTeam * Module/App: Tourist */ (function($) { "use strict"; var steps = [{ content: "

Current online user

You can find here status of user who's currently online.

", highlightTarget: true, nextButton: true, target: $('#tour-1'), my: 'top left', at: 'bottom center' }, { content: "

Page title

This is page title.

", highlightTarget: false, nextButton: true, target: $('#tour-2'), my: 'top center', at: 'bottom center' }, { content: "

Notification

Click here to view notifications.

", highlightTarget: false, nextButton: true, target: $('#tour-3'), my: 'top right', at: 'bottom center' }, { content: "

Search

Find somthing userful here!

", highlightTarget: false, nextButton: true, target: $('#tour-4'), my: 'top center', at: 'bottom center' }] var tour = new Tourist.Tour({ steps: steps, tipClass: 'Bootstrap', tipOptions:{ showEffect: 'slidein' } }); tour.start(); })(jQuery);