groups/modules/commons/commons_media/commons_media_autoembed.js

11 lines
207 B
JavaScript

(function ($) {
Drupal.behaviors.autoEmbed = {
attach: function (context, settings) {
// Automatically click the submit button to embed the file.
$('.button.fake-ok').click();
}
};
})(jQuery);