You are here

function scald_gallery_library_alter in Scald: Gallery 7.2

Implements hook_library_alter().

File

./scald_gallery.module, line 78
Scald Gallery is a Scald Atom Provider for image galleries.

Code

function scald_gallery_library_alter(&$libraries, $module) {
  if ($module == 'dnd') {
    $libraries['library']['dependencies'][] = array(
      'scald_gallery',
      'gallery',
    );
  }
}