Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / inline_entity_form / js / inline_entity_form.js
1 /**
2  * @file
3  * Provides JavaScript for Inline Entity Form.
4  */
5
6 (function ($) {
7
8 /**
9  * Allows submit buttons in entity forms to trigger uploads by undoing
10  * work done by Drupal.behaviors.fileButtons.
11  */
12 Drupal.behaviors.inlineEntityForm = {
13   attach: function (context) {
14     /*
15     if (Drupal.file) {
16       $('input.ief-entity-submit', context).unbind('mousedown', Drupal.file.disableFields);
17     }
18     */
19   },
20   detach: function (context) {
21     /*
22     if (Drupal.file) {
23       $('input.form-submit', context).bind('mousedown', Drupal.file.disableFields);
24     }
25     */
26   }
27 };
28
29 })(jQuery);