1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-11-04 16:45:08 -05:00

Remove end session confirmation

This commit is contained in:
Lance Stout 2013-09-19 09:44:37 -07:00
parent c667d79cb9
commit db0dfe92b7

View File

@ -54,7 +54,8 @@ module.exports = {
window.onbeforeunload = function () {
if (client.sessionStarted) {
client.disconnect();
return "End active session?";
// We'll make this a setting later
//return "End active session?";
}
};