]> git.donarmstrong.com Git - roundcube.git/blobdiff - skins/default/splitter.js
Imported Upstream version 0.1
[roundcube.git] / skins / default / splitter.js
index 97965a245aeff25822b336a56526c9299eeff660..0b02fb5e522455c150c600dd4a58ec6836e04011 100644 (file)
@@ -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()