aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBootstrap's Grunt bot <[email protected]>2015-01-28 01:02:34 +0000
committerBootstrap's Grunt bot <[email protected]>2015-01-28 01:02:34 +0000
commitcb939e2efe36eb3ad7914a423d8ff08ac7160ca5 (patch)
treeb4d1e0491dc6ae554ef37d0c0f4249e6570abda5
parentb258a1f5b08122f3efacbd1521cfb6286bc399b8 (diff)
downloadbootstrap-cb939e2efe36eb3ad7914a423d8ff08ac7160ca5.tar.xz
bootstrap-cb939e2efe36eb3ad7914a423d8ff08ac7160ca5.zip
automatic grunt dist
-rw-r--r--dist/js/bootstrap.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/js/bootstrap.js b/dist/js/bootstrap.js
index 4139b6fc3..829e82e2b 100644
--- a/dist/js/bootstrap.js
+++ b/dist/js/bootstrap.js
@@ -1499,10 +1499,10 @@ if (typeof jQuery === 'undefined') {
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
}
- Tooltip.prototype.replaceArrow = function (delta, dimension, isHorizontal) {
+ Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
this.arrow()
- .css(isHorizontal ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
- .css(isHorizontal ? 'top' : 'left', '')
+ .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
+ .css(isVertical ? 'top' : 'left', '')
}
Tooltip.prototype.setContent = function () {