You are here

function hook_royalslider_easing_alter in RoyalSlider Integration 7

Implements hook_royalslider_easing_alter().

Alter the available jQuery Easing methods available to RoyalSlider.

Parameters

array: An array of easing method names.

1 invocation of hook_royalslider_easing_alter()
_royalslider_jqeasing_options in ./royalslider.module
List of all easing methods available from jQuery Easing v1.3.

File

./royalslider.api.php, line 54
API Documentation for RoyalSlider module.

Code

function hook_royalslider_easing_alter(&$methods) {
  $methods[] = 'my-custom-method';
}