mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 18:52:50 +00:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
exports.connect = function() {
|
|
model = this.model
|
|
// Hide the reconnect link for a second after clicking it
|
|
model.set('hideReconnect', true)
|
|
setTimeout(function() {
|
|
model.set('hideReconnect', false)
|
|
}, 1000)
|
|
model.socket.socket.connect()
|
|
}
|
|
|
|
exports.reload = function() {
|
|
window.location.reload()
|
|
}
|