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/js
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-03-04 00:06:25 +0300
committerChris Rebert <code@rebertia.com>2015-03-04 00:06:32 +0300
commit168297c7791497c2b1a29c001799236d7ee77517 (patch)
tree2b375501ebcc2ccb57c5081d1a926e4e05d10dbd /js
parent20d3ad10eb5d40e48074229c4dcc6ed423c6fe87 (diff)
rm semicolon for sake of fat's eccentric tastes
Erratum from #15496
Diffstat (limited to 'js')
-rw-r--r--js/tooltip.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tooltip.js b/js/tooltip.js
index 7f89a37ac8..6d7f6ccbe7 100644
--- a/js/tooltip.js
+++ b/js/tooltip.js
@@ -53,7 +53,7 @@
this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)
if (this.$element[0] instanceof document.constructor && !this.options.selector) {
- throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!');
+ throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
}
var triggers = this.options.trigger.split(' ')