summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-03-02 13:37:24 +0000
committerthomascube <thomas@roundcube.net>2008-03-02 13:37:24 +0000
commit49ff2ab24912a88a381ad67ed70a880acc6246fe (patch)
tree9d177cf99eba252fd6e21a3b5b5214ae8ff7c3f3
parent2371191c30edbbafa420882cd2f812b8ab03f2a9 (diff)
Minor fix in splitter script for safari browsers
-rw-r--r--skins/default/splitter.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/default/splitter.js b/skins/default/splitter.js
index 97965a245..0b02fb5e5 100644
--- a/skins/default/splitter.js
+++ b/skins/default/splitter.js
@@ -11,8 +11,8 @@ function rcube_splitter(attrib)
this.id = attrib.id ? attrib.id : this.p1id + '_' + this.p2id + '_splitter';
this.orientation = attrib.orientation;
this.horizontal = (this.orientation == 'horizontal' || this.orientation == 'h');
- this.offset_1 = bw.ie ? 0 : (bw.safari ? 2 : -1);
- this.offset_2 = bw.ie ? -2 : (bw.safari ? -2 : 1);
+ this.offset_1 = bw.ie ? 0 : -1;
+ this.offset_2 = bw.ie ? -2 : 1;
this.pos = 0;
this.init = function()