You are here

function webform_service_library in Webform Service 7.4

Implements hook_library().

File

./webform_service.module, line 6

Code

function webform_service_library() {
  return array(
    'webform_service' => array(
      'title' => t('Webform Service JavaScript API'),
      'version' => '0.1',
      'js' => array(
        drupal_get_path('module', 'webform_service') . '/js/webform_service_crud.js' => array(),
      ),
    ),
  );
}