From c1fea52a93a011de80af695fc3ac4f099b3316ad Mon Sep 17 00:00:00 2001 From: MrWaffle Date: Sun, 19 Jan 2014 22:38:44 +0100 Subject: [PATCH] Only alternate title when not focused --- public/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/app.js b/public/src/app.js index 99b4b29615..7c78e6e26f 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -407,7 +407,7 @@ var socket, return; } - if (title.length > 0) { + if (title.length > 0 && !app.isFocused) { titleObj.titles[1] = title; if (titleObj.interval) { clearInterval(titleObj.interval);