diff options
| author | Chris Rebert <[email protected]> | 2013-12-06 16:43:09 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-12-06 16:43:09 -0800 |
| commit | 4be126e0142556805b59cb5a62d33c4a3fd2b8d4 (patch) | |
| tree | e361eec9c929fcbdf308cd13d6cc1adfe87a19f8 /dist | |
| parent | 650279f70388acb366f560fdcb03b048ec1dc318 (diff) | |
| parent | 5e2ef69e1cc0ee62dfe1206f25030d1f89d9e50f (diff) | |
| download | bootstrap-4be126e0142556805b59cb5a62d33c4a3fd2b8d4.tar.xz bootstrap-4be126e0142556805b59cb5a62d33c4a3fd2b8d4.zip | |
Merge pull request #11745 from XhmikosR/function-spaces
Be consistent with function () spaces
Diffstat (limited to 'dist')
| -rw-r--r-- | dist/js/bootstrap.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/js/bootstrap.js b/dist/js/bootstrap.js index 850e6e53b..183279907 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) + "%") : '') } |
