Projet

Général

Profil

Paste
Télécharger (261 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / highlightjs / highlight_js.js @ 13755f8d

1
(function($) {
2

    
3
/**
4
 * Provide a Drupal-specific wrapper for JUSH Framework.
5
 */
6
Drupal.behaviors.highlight_js = {
7
  attach: function(context, settings) {
8
    // Act on anything that is classed with "jush".
9
    hljs.initHighlightingOnLoad();
10
  }
11
};
12

    
13
})(jQuery)