12345678910111213141516171819202122232425262728293031 |
- /**
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/2815083
- * @preserve
- **/
- (function ($, Drupal) {
- 'use strict';
- Drupal.AudiofieldMediaelement = {};
- Drupal.AudiofieldMediaelement.generate = function (context, file, settings) {
- $(file, context).once('generate-mediaelement').mediaelementplayer({
- startVolume: settings.volume,
- loop: false,
- enableAutosize: true,
- isVideo: false
- });
- };
- Drupal.behaviors.audiofieldmediaelement = {
- attach: function attach(context, settings) {
- $.each(settings.audiofieldmediaelement, function (key, settingEntry) {
- $.each(settingEntry.elements, function (key2, fileEntry) {
- Drupal.AudiofieldMediaelement.generate(context, fileEntry, settingEntry);
- });
- });
- }
- };
- })(jQuery, Drupal);
|