Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / javascript.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/javascript.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/javascript.twig
new file mode 100644 (file)
index 0000000..1288abd
--- /dev/null
@@ -0,0 +1,17 @@
+/**
+ * {{ name }} behaviors.
+ */
+(function ($) {
+
+  /**
+   * Behavior description.
+   */
+  Drupal.behaviors.{{ machine_name | camelize(false) }} = {
+    attach: function (context, settings) {
+
+      console.log('It works!');
+
+    }
+  }
+
+}(jQuery));