undef HALF_FREQUENCY_SENDING_TO_CLIENT
[ryzomcore.git] / web / public_php / ams / js / help.js
blob2dc0773c0aa2c801fcfbd7c03123dc56416e355b
1 function show_help(help_tip)
3         if(help_tip =='intro')
4         {
5                 var tour = new Tour();
6                 tour.addStep({
7                         element: ".brand:first", /* html element next to which the step popover should be shown */
8                         placement: "bottom",
9                         title: "Account Management System", /* title of the popover */
10                         content: "Welcome to the Ryzom Core Account Management System! Let's explore it together... Click next!" /* content of the popover */
11                 });
12                 tour.addStep({
13                         element: ".theme-container",
14                         placement: "left",
15                         title: "Themes",
16                         content: "You change your theme from here."
17                 });
18                 tour.addStep({
19                         element: "ul.main-menu a:first",
20                         title: "Dashboard",
21                         content: "This is your dashboard from here you will find highlights."
22                 });
23                 tour.restart();
24         }
28 function syncRun()
30         $.get("index.php?cron=true");
31         alert("Sync function called.");
34 $("#sync").click(function() {syncRun();});