mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
22 lines
No EOL
1.5 KiB
HTML
22 lines
No EOL
1.5 KiB
HTML
<script>
|
|
var contextualHelp1 = function (target, openSidePanel) {
|
|
$("#help-content").removeClass('help-content-open'); // Close the help panel
|
|
$("#navbar-collapse-1").removeClass('in'); // Collapse the navbar for small screens
|
|
if (openSidePanel) {
|
|
$("main").addClass('region_1-on'); // Open the side panel to highlight element
|
|
} else {
|
|
$("main").removeClass('region_1-on');
|
|
}
|
|
// Animate the page scroll to the element and then pulse the element to direct attention
|
|
$('html,body').animate({scrollTop: $(target).offset().top - $('#navbar-collapse-1').height() - 20}, 'slow');
|
|
for (i = 0; i < 3; i++) {
|
|
$(target).fadeTo('slow', 0.1).fadeTo('slow', 1.0);
|
|
}
|
|
}
|
|
</script>
|
|
<dl class="dl-horizontal">
|
|
<dt>General</dt>
|
|
<dd>This page displays a channel's "cloud" files. The files visible to the observer depend on the individual file permissions set by the channel owner. If you have permission to create/upload files you will see control buttons above the file list.</dd>
|
|
<dt><a href='#' onclick='contextualHelp1("#tabs-collapse-1", 0); return false;' title="Click to highlight element...">Channel Content Tabs</a></dt>
|
|
<dd>The channel content tabs are links to other content published by the channel. The <b>About</b> tab links to the channel profile. The <b>Photos</b> tab links to the channel photo galleries. The <b>Files</b> tab links to the general shared files published by the channel.</dd>
|
|
</dl> |