mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2025-02-21 11:11:23 +00:00
Simplify
This commit is contained in:
parent
dfd2e885f8
commit
0bcd67f7a0
1 changed files with 1 additions and 2 deletions
|
@ -2,9 +2,8 @@
|
|||
|
||||
var UserLogin = React.createClass({
|
||||
authorizeId: function (id) {
|
||||
id = parseInt(id, 10);
|
||||
socket.emit("users:authorize", {
|
||||
id: id
|
||||
id: parseInt(id, 10)
|
||||
});
|
||||
setTimeout(function () {
|
||||
socket.emit("gather:refresh");
|
||||
|
|
Loading…
Reference in a new issue