You are here

function easychart_init in Easychart 7.3

Same name and namespace in other branches
  1. 7 easychart.module \easychart_init()
  2. 7.2 easychart.module \easychart_init()

Implements hook_init().

File

./easychart.module, line 24
Easychart module file.

Code

function easychart_init() {

  // This adds fullscreen support for the overlay module.
  if (module_exists('overlay')) {
    drupal_add_js(drupal_get_path('module', 'easychart') . '/js/easychart.overlay.js');
  }
}