This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/client/scripts/index/10-init-framework.coffee

11 lines
221 B
CoffeeScript
Raw Normal View History

2018-10-02 01:02:17 +00:00
# init Socket.IO
socket = io()
$('form[name="fftcg-login"]').submit ->
data =
uname: $('input[name="uname"]').val()
password: $('input[name="password"]').val()
@reset()
socket.emit 'login', data
false