summaryrefslogtreecommitdiff
path: root/skins/classic/splitter.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-01-28 20:25:05 +0100
committerThomas Bruederli <thomas@roundcube.net>2013-01-28 20:25:05 +0100
commit6782fe1fd7d3230350153ba307dd5d49b9670604 (patch)
tree070fe47f575e4ef74e914471e5033b5451e9d083 /skins/classic/splitter.js
parentb4a30ac84f9f6267f91f7d2d93462133cd772305 (diff)
parent0f4022d54f12fed14c25bc4d78779494b86c4fcc (diff)
Merge branch 'release-0.9' of github.com:roundcube/roundcubemail into release-0.9
Diffstat (limited to 'skins/classic/splitter.js')
-rw-r--r--skins/classic/splitter.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/skins/classic/splitter.js b/skins/classic/splitter.js
index 3f1c97302..72ada5719 100644
--- a/skins/classic/splitter.js
+++ b/skins/classic/splitter.js
@@ -28,13 +28,13 @@ function rcube_splitter(attrib)
if (this.horizontal) {
var top = this.p1pos.top + this.p1.offsetHeight;
- this.layer = new rcube_layer(this.id, {x: 0, y: top, height: 10,
- width: '100%', vis: 1, parent: this.p1.parentNode});
+ this.layer = new rcube_layer(this.id, {x: 0, y: top, height: 10,
+ width: '100%', vis: 1, parent: this.p1.parentNode});
}
else {
var left = this.p1pos.left + this.p1.offsetWidth;
- this.layer = new rcube_layer(this.id, {x: left, y: 0, width: 10,
- height: '100%', vis: 1, parent: this.p1.parentNode});
+ this.layer = new rcube_layer(this.id, {x: left, y: 0, width: 10,
+ height: '100%', vis: 1, parent: this.p1.parentNode});
}
this.elm = this.layer.elm;
@@ -147,6 +147,7 @@ function rcube_splitter(attrib)
this.p1pos = this.relative ? $(this.p1).position() : $(this.p1).offset();
this.p2pos = this.relative ? $(this.p2).position() : $(this.p2).offset();
+
return false;
};