From: David ‘Bombe’ Roden Date: Thu, 25 Nov 2010 19:56:17 +0000 (+0100) Subject: Store whether we are focussed in a flag. X-Git-Tag: 0.3.1-RC2~6 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=42beabd1ccb9ce725041a4efcaff95513c9f89b1 Store whether we are focussed in a flag. --- diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index f195d59..472df5a 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -722,6 +722,8 @@ function createNotification(id, text, dismissable) { // EVERYTHING BELOW HERE IS EXECUTED AFTER LOADING THE PAGE // +var focus = true; + $(document).ready(function() { /* this initializes the status update input field. */ @@ -824,7 +826,10 @@ $(document).ready(function() { /* reset activity counter when the page has focus. */ $(window).focus(function() { + focus = true; resetActivity(); - }); + }).blur(function() { + focus = false; + }) });