From d176bcf47e9b3a7df8c6ae691f767f1012214c53 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 7 Oct 2014 10:23:43 -0700 Subject: [PATCH] fix(client.html): always open debug.html in a new browser process Chrome reuses a single process for tabs opened by clicking links. This means that if I use debugger in debug.html it will block the regular karma tab which will make karma think that the connection was lost. By forcing the debug.html to be opened in a new process the original chrome tab will be unaffected while debugging with debug.html. Info about the rel attribute: http://blog.chromium.org/2009/12/links-that-open-in-new-processes.html --- static/client.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/client.html b/static/client.html index 72f8dce13..00cba0016 100644 --- a/static/client.html +++ b/static/client.html @@ -102,7 +102,7 @@