khanat-opennel-code/code/ryzom/tools/server/ryzom_ams/www/html/js/help.js

28 lines
693 B
JavaScript
Raw Normal View History

2013-06-17 07:25:04 +00:00
function show_help(help_tip)
{
if(help_tip =='test')
{
var tour = new Tour();
tour.addStep({
element: ".dashboard-avatar:first", /* html element next to which the step popover should be shown */
2013-06-17 07:25:04 +00:00
placement: "top",
title: "Custom Tour", /* title of the popover */
content: "You can create tour like this. Click Next." /* content of the popover */
});
tour.addStep({
element: ".theme-container",
placement: "left",
title: "Themes",
content: "You change your theme from here."
});
tour.addStep({
element: "ul.main-menu a:first",
title: "Dashboard",
content: "This is your dashboard from here you will find highlights."
});
tour.restart();
}
2013-06-17 07:25:04 +00:00
}