You are here

function bs_shortcodes_preprocess_page in Bootstrap 3 shortcodes 7

Implementation of hook_preprocess_page().

File

./bs_shortcodes.module, line 15

Code

function bs_shortcodes_preprocess_page(&$variables) {
  $path = drupal_get_path('module', 'bs_shortcodes');
  drupal_add_js($path . '/includes/js/bootstrap-shortcodes-tooltip.js', 'file');
  drupal_add_js($path . '/includes/js/bootstrap-shortcodes-popover.js', 'file');

  // drupal_add_js($path . 'js/bootstrap-shortcodes-scrollspy.js', 'file');
}