Fix call to addEventListener (ticket #210).

This commit is contained in:
Michael Jumper
2012-11-07 14:54:12 -08:00
parent 7d6eed709b
commit ebe8b40f8e
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ GuacamoleHistory = new (function() {
this.onchange = null;
// Reload when modified
window.addEventListener("storage", guac_history.reload);
window.addEventListener("storage", guac_history.reload, false);
// Initial load
guac_history.reload();

View File

@@ -99,7 +99,7 @@ function GuacamoleSessionState() {
this.onchange = null;
// Reload when modified
window.addEventListener("storage", guac_state.reload);
window.addEventListener("storage", guac_state.reload, false);
// Initial load
guac_state.reload();