(function() {
  require(['d2l/capture/portal'], function(portal) {
    portal.log('info', 'Running plugin Presentation...');
    $(".c_presentation .side .play").hover(function() {
      return $(this).stop().fadeTo(1, 1.0);
    }, function() {
      return $(this).stop().fadeTo(200, 0.5);
    });
    return $(".presentation a").click(function() {
      return window.location = $(this).attr("href");
    });
  });
}).call(this);

