siddick/siddick

View on GitHub
app/assets/javascripts/home.js

Summary

Maintainability
A
0 mins
Test Coverage
(function($){
  $(document).on('click', 'a[href*="youtube.com/watch"]', function(){
    $.fancybox({
      'width'         : 640,
      'height'        : 385,
      'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '?autoplay=1',
      'type'          : 'iframe',
      'swf'           : {
        'wmode'           : 'transparent',
        'allowfullscreen' : 'true'
      }
    });
    return false;
  });
})(jQuery);