From cb939e2efe36eb3ad7914a423d8ff08ac7160ca5 Mon Sep 17 00:00:00 2001 From: Bootstrap's Grunt bot Date: Wed, 28 Jan 2015 01:02:34 +0000 Subject: [PATCH] automatic grunt dist --- dist/js/bootstrap.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/js/bootstrap.js b/dist/js/bootstrap.js index 4139b6fc3b..829e82e2bf 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 () {