louie-8.x-1.x-dev/hammock/MOWGLI/src/js/components/foundation.js
hammock/MOWGLI/src/js/components/foundation.js
/**
* @file
* Initilize Foundation.
*/
import jQuery from 'jquery';
export default (function initFoundation($, Drupal) {
/**
* Instantiate initFoundation and run it through Drupal attachment.
*/
Drupal.behaviors.initFoundation = {
attach(context, settings) {
// First time through is the entire document.
$(context).foundation();
}
};
}(jQuery, Drupal));
