From 10abf2bc2d08526ad69c6e8691b0a3384603fcc1 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 03 Feb 2014 06:13:25 -0500
Subject: [PATCH] Fix bug where it wasn't possible to focus the messages list with mouse click on a record after the focus was put on preview frame.

---
 program/js/common.js |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/program/js/common.js b/program/js/common.js
index 9c0bb9d..d320d86 100644
--- a/program/js/common.js
+++ b/program/js/common.js
@@ -65,6 +65,7 @@
     this.iphone = this.safari && (this.agent_lc.indexOf('iphone') > 0 || this.agent_lc.indexOf('ipod') > 0);
     this.ipad = this.safari && this.agent_lc.indexOf('ipad') > 0;
     this.opera = window.opera ? true : false;
+    this.webkit = this.safari || this.chrome;
   }
 
   if (!this.vendver) {

--
Gitblit v1.9.1