fix for rightmost element of splitpanel appearing on left side
This commit is contained in:
parent
ad2abfaa4b
commit
8796fe67d2
1 changed files with 1 additions and 1 deletions
|
@ -9208,7 +9208,7 @@ requires
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
that.$elements[i].css(
|
that.$elements[i].css(
|
||||||
self.edges[0], v.size == 'auto' ? 'auto' :
|
self.edges[0], (self.options.elements[1].size == 'auto' || v.size == 'auto') ? 'auto' :
|
||||||
(getVisibleSize(self.options.elements[0]) + getVisibleSize(self.options.elements[1])) + 'px'
|
(getVisibleSize(self.options.elements[0]) + getVisibleSize(self.options.elements[1])) + 'px'
|
||||||
);
|
);
|
||||||
that.$elements[i].css(
|
that.$elements[i].css(
|
||||||
|
|
Loading…
Reference in a new issue