summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-02 13:37:24 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-02 13:37:24 +0000
commit9df5d76e552362e61c3303799379eef4705e57cd (patch)
tree267e37ea5b0c8818a0fa8fe86ba223fef6554879
parentd1e8c904e7b0696a8ecd2c075000609845d49088 (diff)
Minor fix in splitter script for safari browsers
git-svn-id: https://svn.roundcube.net/trunk@1164 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/skins/default/splitter.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/skins/default/splitter.js b/roundcubemail/skins/default/splitter.js
index 97965a245..0b02fb5e5 100644
--- a/roundcubemail/skins/default/splitter.js
+++ b/roundcubemail/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()