/** * Theme: Ninja Admin Template * Author: NinjaTeam * Module/App: Tourist */ (function($) { "use strict"; var steps = [{ content: "
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: "This is page title.
", highlightTarget: false, nextButton: true, target: $('#tour-2'), my: 'top center', at: 'bottom center' }, { content: "Click here to view notifications.
", highlightTarget: false, nextButton: true, target: $('#tour-3'), my: 'top right', at: 'bottom center' }, { content: "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);