"use strict";

;

(function ($, window, document, undefined) {
  'use strict';

  var $document = $(document),
      init = function init() {
    $document.on('click', '.js-youtube2click-button', function (e) {
      e.preventDefault();
      var $this = $(this);
      var $container = $this.closest('.js-youtube2click');
      var url = $this.attr('href');
      $container.replaceWith('<div class="YoutTubeVideo-container"><iframe src="' + url + '" allowfullscreen="" class="YoutTubeVideo-iframe" allow="fullscreen" width="480" height="270"></iframe></div>');
    });
  };

  init();
})(jQuery, window, document);