function animations_help in Animations (JS/CSS) 8
File
- ./
animations.module, line 62
Code
function animations_help($path, $arg) {
$output = "";
switch ($path) {
case "help.page.animations":
$output = t('The module provides an easy way to include common animations into your website. <br />In order to add a new animation:<br />1. Go to "Configure".<br />2. Expand the desired animation tab.<br />3. Fill in your css selectors (each one on a new line). The animation will be applied to the filled css selectors. ');
break;
}
return $output;
}