mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-08-23 10:48:47 +02:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
function clippy_set_help(help_section) {
|
|
document.cookie = "clippy=" + help_section;
|
|
}
|
|
|
|
function clippy_go_link_show_help(link, help_section) {
|
|
document.cookie = "clippy=" + help_section;
|
|
window.location.href = link;
|
|
}
|