fixes login/register and auth routes in relative path install

This commit is contained in:
Baris Soner Usakli
2014-01-04 17:10:56 -05:00
parent 5c048ac20a
commit 751dc73ebe
4 changed files with 80 additions and 77 deletions

View File

@@ -23,7 +23,7 @@ var socket,
} else {
var max_reconnection_attemps = 5;
var reconnection_delay = 200;
socket = io.connect(RELATIVE_PATH, {
socket = io.connect('', {
'max reconnection attempts': max_reconnection_attemps,
'reconnection delay': reconnection_delay
});