Further modules included.
[yaffs-website] / web / modules / contrib / libraries / tests / example / example_3.js
diff --git a/web/modules/contrib/libraries/tests/example/example_3.js b/web/modules/contrib/libraries/tests/example/example_3.js
new file mode 100644 (file)
index 0000000..d6a3fa4
--- /dev/null
@@ -0,0 +1,18 @@
+
+/**
+ * @file
+ * Test JavaScript file for Libraries loading.
+ *
+ * Replace the text in the 'libraries-test-javascript' div. See README.txt for
+ * more information.
+ */
+
+(function ($) {
+
+Drupal.behaviors.librariesTest = {
+  attach: function(context, settings) {
+    $('.libraries-test-javascript').text('If this text shows up, example_3.js was loaded successfully.')
+  }
+};
+
+})(jQuery);