blob: d9572aff893708f54566f8804c3af43b34f9ed2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(function ($) {
Drupal.behaviors.media_gallery = {};
Drupal.behaviors.media_gallery.attach = function (context, settings) {
$(window).bind('media_youtube_load', Drupal.media_gallery.handleMediaYoutubeLoad);
};
Drupal.media_gallery = {};
Drupal.media_gallery.handleMediaYoutubeLoad = function (event, videoSettings) {
$('.media-gallery-detail').width(videoSettings.width + 'px');
};
})(jQuery);
|