Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/dist/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-12-06 14:20:59 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-12-06 14:43:48 +0400
commit4aad52797c9ec43c30561f481f595be178f6ab94 (patch)
tree9cb30515d76883c0fa8f97f43f59140473bfcd2c /dist/js
parent7b06538c911f40c46ae67b0c0df7afdfbcb5d00a (diff)
Use a space after function consistently.
Diffstat (limited to 'dist/js')
-rw-r--r--dist/js/bootstrap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/js/bootstrap.js b/dist/js/bootstrap.js
index 850e6e53b4..183279907a 100644
--- a/dist/js/bootstrap.js
+++ b/dist/js/bootstrap.js
@@ -1272,7 +1272,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
}
}
- Tooltip.prototype.applyPlacement = function(offset, placement) {
+ Tooltip.prototype.applyPlacement = function (offset, placement) {
var replace
var $tip = this.tip()
var width = $tip[0].offsetWidth
@@ -1323,7 +1323,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
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) + "%") : '')
}