uncomment updater cache hack

This commit is contained in:
James Campos 2011-04-24 23:56:32 -07:00
parent 06194bf43e
commit c1b5bdb24b
2 changed files with 2 additions and 2 deletions

View File

@ -1377,7 +1377,7 @@
if ((_ref = updater.request) != null) {
_ref.abort();
}
url = location.href;
url = location.href + '?' + Date.now();
cb = updater.cb.update;
return updater.request = $.get(url, cb);
}

View File

@ -1084,7 +1084,7 @@ updater =
update: ->
updater.request?.abort()
url = location.href #+ '?' + Date.now() # fool the cache
url = location.href + '?' + Date.now() # fool the cache
cb = updater.cb.update
updater.request = $.get url, cb