From 11b4661b46e83eea2a7a34df7c7c999de0239093 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 5 Jun 2014 03:40:43 +0000 Subject: [PATCH] js/history: fix history on initial page There is a workaround for a nasty Chrome missbehaviour, however I have no longer been able to reproduce it. Temporarily disabled the workaround, could you please try whether behaviour is better / correct like this? Please also check for requests firing twice on initial page load. refs #6277 --- public/js/icinga/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/icinga/history.js b/public/js/icinga/history.js index 326be38c7..3aac07347 100644 --- a/public/js/icinga/history.js +++ b/public/js/icinga/history.js @@ -110,7 +110,7 @@ // Chrome workaround: onload = !self.pushedSomething && location.href === self.initialUrl; self.pushedSomething = true; - if (onload) { return; } + // if (onload) { return; } // Temporarily disabled // End of Chrome workaround // We might find browsers showing strange behaviour, this log could help