Skip to content

Instantly share code, notes, and snippets.

@frob
Last active October 14, 2015 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frob/2053cf678d3a81aea5f4 to your computer and use it in GitHub Desktop.
Save frob/2053cf678d3a81aea5f4 to your computer and use it in GitHub Desktop.
a custom js implementation for drupal
/**
* @file
* Custom JS for a Drupal Module.
*/
(function ($) {
"use strict";
Drupal.behaviors.custom_custom = {
attach: function (context, settings) {
// End of attach.
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment