aboutsummaryrefslogtreecommitdiff
path: root/js/tooltip.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2013-12-06 12:20:59 +0200
committerXhmikosR <[email protected]>2013-12-06 12:43:48 +0200
commit4aad52797c9ec43c30561f481f595be178f6ab94 (patch)
tree9cb30515d76883c0fa8f97f43f59140473bfcd2c /js/tooltip.js
parent7b06538c911f40c46ae67b0c0df7afdfbcb5d00a (diff)
downloadbootstrap-4aad52797c9ec43c30561f481f595be178f6ab94.tar.xz
bootstrap-4aad52797c9ec43c30561f481f595be178f6ab94.zip
Use a space after function consistently.
Diffstat (limited to 'js/tooltip.js')
-rw-r--r--js/tooltip.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tooltip.js b/js/tooltip.js
index 4c848f0e2..8debad96b 100644
--- a/js/tooltip.js
+++ b/js/tooltip.js
@@ -192,7 +192,7 @@
}
}
- Tooltip.prototype.applyPlacement = function(offset, placement) {
+ Tooltip.prototype.applyPlacement = function (offset, placement) {
var replace
var $tip = this.tip()
var width = $tip[0].offsetWidth
@@ -243,7 +243,7 @@
if (replace) $tip.offset(offset)
}
- Tooltip.prototype.replaceArrow = function(delta, dimension, position) {
+ Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + "%") : '')
}