You are here

function colorbox_swipe_libraries_info in Colorbox Swipe Gestures Support 7

Implements hook_library().

File

./colorbox_swipe.module, line 114
Helper module to recognize swipe events in lightbox. Mini Module developed by DROWL.de

Code

function colorbox_swipe_libraries_info() {
  $libraries = array();
  $libraries['jquery.event.move'] = array(
    'name' => 'jQuery Event Move',
    'vendor url' => 'https://github.com/stephband/jquery.event.move',
    'download url' => 'https://github.com/stephband/jquery.event.move/archive/master.zip',
    'version' => '1.0',
    'files' => array(
      'js' => array(
        'js/jquery.event.move.js' => array(
          'scope' => 'footer',
        ),
      ),
    ),
  );
  $libraries['jquery.event.swipe'] = array(
    'name' => 'jQuery Event Swipe',
    'vendor url' => 'https://github.com/stephband/jquery.event.swipe',
    'download url' => 'https://github.com/stephband/jquery.event.swipe/archive/master.zip',
    'version' => '1.0',
    'files' => array(
      'js' => array(
        'js/jquery.event.swipe.js' => array(
          'scope' => 'footer',
        ),
      ),
    ),
  );
  return $libraries;
}