dblock/slack-gamebot

View on GitHub
public/js/toggle.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function() {
  $('#games-toggle').on('click', function(e) {
    e.preventDefault();
    $('#games-pong').fadeOut('fast', function() {
      $('#games-all').fadeIn('slow');
    });
  });
});