You are here

function sassy_foundation_library in Sassy 7.3

Same name and namespace in other branches
  1. 7.2 extensions/foundation/sassy_foundation.module \sassy_foundation_library()

Implements hook_library().

File

sassy_foundation/sassy_foundation.module, line 44

Code

function sassy_foundation_library() {
  $path = drupal_get_path('module', 'sassy_foundation') . '/foundation/';
  return array(
    'foundation-orbit' => array(
      'title' => 'Foundation Orbit',
      'version' => '1.3.0',
      'website' => 'http://foundation.zurb.com/docs/orbit.php',
      'js' => array(
        $path . 'javascripts/jquery.orbit-1.3.0.js',
      ),
      'css' => array(
        $path . 'stylesheets/orbit.css',
      ),
    ),
    'foundation-reveal' => array(
      'title' => 'Foundation Reveal',
      'version' => '2.0.3',
      'website' => 'http://foundation.zurb.com/docs/reveal.php',
      'js' => array(
        $path . 'javascripts/jquery.reveal.js',
      ),
      'css' => array(
        $path . 'stylesheets/reveal.css',
      ),
    ),
  );
}