Guest User

Untitled

a guest
Sep 26th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. socket.on('set username', function (val) {
  2. sess.reload(function () {
  3. sess.username = val;
  4. sess.touch().save();
  5. });
  6. });
  7. socket.on('set password', function (val) {
  8. sess.reload(function () {
  9. sess.password = val;
  10. sess.touch().save();
  11. });
  12. });
Add Comment
Please, Sign In to add comment