thomascube
2008-03-02 49ff2ab24912a88a381ad67ed70a880acc6246fe
Minor fix in splitter script for safari browsers

1 files modified
4 ■■■■ changed files
skins/default/splitter.js 4 ●●●● patch | view | raw | blame | history
skins/default/splitter.js
@@ -11,8 +11,8 @@
  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()