Further modules included.
[yaffs-website] / web / modules / contrib / libraries / tests / example / example_4.js
1
2 /**
3  * @file
4  * Test JavaScript file for Libraries loading.
5  *
6  * Replace the text in the 'libraries-test-javascript' div. See README.txt for
7  * more information.
8  */
9
10 (function ($) {
11
12 Drupal.behaviors.librariesTest = {
13   attach: function(context, settings) {
14     $('.libraries-test-javascript').text('If this text shows up, example_4.js was loaded successfully.')
15   }
16 };
17
18 })(jQuery);