diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-05-17 13:15:41 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-05-17 13:15:41 -0400 |
commit | b48f0adccb11619680a47cac5fa9c68f638bd489 (patch) | |
tree | 9e75612c21ae9944b354afa13e2e94834e020e9c /webcards/scripts/gui/table.js | |
parent | c9e2eee382df60bc7a058b56c804258848477d67 (diff) |
[WebCards] Update from my local repos
Diffstat (limited to 'webcards/scripts/gui/table.js')
-rw-r--r-- | webcards/scripts/gui/table.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/webcards/scripts/gui/table.js b/webcards/scripts/gui/table.js index db67529..2776f80 100644 --- a/webcards/scripts/gui/table.js +++ b/webcards/scripts/gui/table.js @@ -1,4 +1,4 @@ -// Table represents and manages the actual game. It accepts inputs from the server and tries to queries the server when the player makes a move. +// Table represents and manages the actual game. It accepts inputs from the server and tries to query the server when the player makes a move. function Table(el, soc) { this.root = el; this.soc = soc; @@ -22,8 +22,6 @@ Table.prototype = { } }, - - handleClose: function() { this.reset(); }, |