2013-06-17 07:25:04 +00:00
|
|
|
function show_help(help_tip)
|
|
|
|
{
|
2013-06-17 14:29:20 +00:00
|
|
|
if(help_tip =='intro')
|
2013-06-17 07:25:04 +00:00
|
|
|
{
|
|
|
|
var tour = new Tour();
|
|
|
|
tour.addStep({
|
2013-06-17 13:39:55 +00:00
|
|
|
element: ".brand:first", /* html element next to which the step popover should be shown */
|
|
|
|
placement: "bottom",
|
2013-06-17 14:29:20 +00:00
|
|
|
title: "Account Management System", /* title of the popover */
|
|
|
|
content: "Welcome to the Ryzom Core Account Management System! Let's explore it together... Click next!" /* content of the popover */
|
2013-06-17 07:25:04 +00:00
|
|
|
});
|
|
|
|
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 09:03:31 +00:00
|
|
|
|
2013-06-17 07:25:04 +00:00
|
|
|
}
|
2013-06-17 09:03:31 +00:00
|
|
|
|
2013-10-23 22:06:41 +00:00
|
|
|
function syncRun()
|
|
|
|
{
|
|
|
|
$.get("index.php?cron=true");
|
|
|
|
alert("Sync function called.");
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#sync").click(function() {syncRun();});
|