You are here

function responsive_tables_library in Responsive Tables 7

Same name and namespace in other branches
  1. 7.2 responsive_tables.module \responsive_tables_library()

Implements hook_library().

File

./responsive_tables.module, line 13
Describe the file

Code

function responsive_tables_library() {
  $path = libraries_get_path('MediaTable');
  $libraries['responsive_tables'] = array(
    'title' => 'Responsive Tables',
    'version' => '1.0',
    'js' => array(
      $path . '/jquery.mediaTable.js' => array(),
      $path . '/respond.min.js' => array(),
    ),
    'css' => array(
      $path . '/jquery.mediaTable.css' => array(
        'type' => 'file',
        'media' => 'screen',
      ),
    ),
  );
  return $libraries;
}