From b110ff02615e1f766b0f2a2c626dc8809d41ae4e Mon Sep 17 00:00:00 2001 From: Jon Benson Date: Tue, 7 May 2013 17:33:26 +1000 Subject: [PATCH] Fix status div showing above chat. --- code/chat.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/chat.js b/code/chat.js index 8ce22b2c..3f0fd91b 100644 --- a/code/chat.js +++ b/code/chat.js @@ -523,7 +523,9 @@ window.chat.chooseAnchor = function(t) { } window.chat.show = function(name) { - if (!window.isSmartphone) $('#updatestatus').show(); + window.isSmartphone + ? $('#updatestatus').hide() + : $('#updatestatus').show(); $('#chat, #chatinput').show(); $('#map').css('visibility', 'hidden');