nus-mtp/attack-on-tutor

View on GitHub
public/js/lobby.js

Summary

Maintainability
A
0 mins
Test Coverage
var logoutConfirmation = "Would You Like to Log Out?";

$("#logout").on
(
    "click",
    function(event)
    {
        Cookies.remove('token');
        location.reload();
    }
);