|
@ -103,8 +103,12 @@ RangeItem.prototype.redraw = function() { |
|
|
this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; |
|
|
this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; |
|
|
|
|
|
|
|
|
// recalculate size
|
|
|
// recalculate size
|
|
|
|
|
|
// turn off max-width to be able to calculate the real width
|
|
|
|
|
|
// this causes an extra browser repaint/reflow, but so be it
|
|
|
|
|
|
this.dom.content.style.maxWidth = 'none'; |
|
|
this.props.content.width = this.dom.content.offsetWidth; |
|
|
this.props.content.width = this.dom.content.offsetWidth; |
|
|
this.height = this.dom.box.offsetHeight; |
|
|
this.height = this.dom.box.offsetHeight; |
|
|
|
|
|
this.dom.content.style.maxWidth = ''; |
|
|
|
|
|
|
|
|
this.dirty = false; |
|
|
this.dirty = false; |
|
|
} |
|
|
} |
|
@ -175,7 +179,7 @@ RangeItem.prototype.repositionX = function() { |
|
|
else { |
|
|
else { |
|
|
this.left = start; |
|
|
this.left = start; |
|
|
this.width = boxWidth; |
|
|
this.width = boxWidth; |
|
|
contentWidth = Math.min(end - start, this.props.content.width); |
|
|
|
|
|
|
|
|
contentWidth = Math.min(end - start - 2 * this.options.padding, this.props.content.width); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
this.dom.box.style.left = this.left + 'px'; |
|
|
this.dom.box.style.left = this.left + 'px'; |
|
@ -195,15 +199,19 @@ RangeItem.prototype.repositionX = function() { |
|
|
break; |
|
|
break; |
|
|
|
|
|
|
|
|
default: // 'auto'
|
|
|
default: // 'auto'
|
|
|
|
|
|
// when range exceeds left of the window, position the contents at the left of the visible area
|
|
|
if (this.overflow) { |
|
|
if (this.overflow) { |
|
|
// when range exceeds left of the window, position the contents at the left of the visible area
|
|
|
|
|
|
contentLeft = Math.max(-start, 0); |
|
|
|
|
|
|
|
|
if (end > 0) { |
|
|
|
|
|
contentLeft = Math.max(-start, 0); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
contentLeft = -contentWidth; // ensure it's not visible anymore
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
// when range exceeds left of the window, position the contents at the left of the visible area
|
|
|
|
|
|
if (start < 0) { |
|
|
if (start < 0) { |
|
|
contentLeft = Math.min(-start, |
|
|
contentLeft = Math.min(-start, |
|
|
(end - start - this.props.content.width - 2 * this.options.padding)); |
|
|
|
|
|
|
|
|
(end - start - contentWidth - 2 * this.options.padding)); |
|
|
// TODO: remove the need for options.padding. it's terrible.
|
|
|
// TODO: remove the need for options.padding. it's terrible.
|
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|