colonizers/colonizers

View on GitHub
packages/colonizers/server/web/lobby/public.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

window.run = ({ $, swal }) => {
  $('form').form(function(room) {
    swal({
      title: 'Room created',
      text: 'Taking you there now...',
      type: 'success'
    });
    setTimeout(function() {
      window.location = '/room/' + room.id;
    }, 2000);
  });
};