You are here

function itoggle_modules_disabled in iToggle 7.2

Implements hook_modules_disabled().

Deletes easing option if jQuery Easing module is disabled. This will prevent breaking the widget.

File

./itoggle.module, line 513
iToggle core module.

Code

function itoggle_modules_disabled($modules) {
  if (in_array('jqeasing', $modules)) {
    variable_del('itoggle_easing_function');
  }
}