remove test game

This commit is contained in:
ntr 2019-05-03 18:45:24 +10:00
parent 903acbbe26
commit bd572575c6
3 changed files with 5 additions and 5 deletions

View File

@ -727,7 +727,7 @@ table td svg {
} }
.game-cryp button { .game-cryp button {
color: #333333; color: #888;
flex: 1 1 100%; flex: 1 1 100%;
font-size: 16pt; font-size: 16pt;
padding: 0; padding: 0;
@ -742,6 +742,7 @@ table td svg {
.game-cryp button[disabled] { .game-cryp button[disabled] {
color: #333333; color: #333333;
font-size: 14pt; font-size: 14pt;
text-decoration: line-through
} }
.game-cryp button:hover { .game-cryp button:hover {

View File

@ -44,7 +44,6 @@ function Skill(props) {
<button <button
disabled='true' disabled='true'
className='cryp-skill-btn disabled'> className='cryp-skill-btn disabled'>
<span>&nbsp;</span>
</button> </button>
); );
} }

View File

@ -9,7 +9,7 @@ const actions = require('./actions');
const setupKeys = require('./keyboard'); const setupKeys = require('./keyboard');
const createSocket = require('./socket'); const createSocket = require('./socket');
const registerEvents = require('./events'); const registerEvents = require('./events');
const testGame = require('./test.game'); // const testGame = require('./test.game');
const Header = require('./components/header.container'); const Header = require('./components/header.container');
const Body = require('./components/body.component'); const Body = require('./components/body.component');
@ -46,8 +46,8 @@ document.fonts.load('16pt "Jura"').then(() => {
store.dispatch(actions.setWs(ws)); store.dispatch(actions.setWs(ws));
ws.connect(); ws.connect();
events.setGame(testGame); // events.setGame(testGame);
ws.clearGameStateTimeout(); // ws.clearGameStateTimeout();
// tells jdenticon to look for new svgs and render them // tells jdenticon to look for new svgs and render them
// so we don't have to setInnerHtml or manually call update // so we don't have to setInnerHtml or manually call update