missing 'px'

This commit is contained in:
rlx 2014-09-20 12:31:05 +02:00
parent 3e47fa538f
commit 2311db5aa0

View file

@ -131,7 +131,7 @@ Ox.SplitPanel = function(options, self) {
elementIndices.forEach(function(elementIndex, index) {
self.$elements[elementIndex].css(
index == 0 ? dimension : edge,
index == 0 ? size : size + 1
(index == 0 ? size : size + 1) + 'px'
);
});
}