/**
 * @file
 * figlimal behaviors.
 */
(function (Drupal) {

  'use strict';

  Drupal.behaviors.figlimal = {
    attach: function (context, settings) {

      console.log('It works!');

    }
  };

} (Drupal));