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
diff options
context:
space:
mode:
authorfat <jacobthornton@gmail.com>2014-01-17 02:28:21 +0400
committerfat <jacobthornton@gmail.com>2014-01-17 02:28:21 +0400
commit4bd6a52562c48d6d798bcbe427e08ad306889b4a (patch)
tree393c99350d83797d92263eb7c19d6405883c1971 /js/tests/unit/tooltip.js
parent82ff4e2e40a3f81c569cc46c1ae1f10ffde9e6ad (diff)
add missing paren
Diffstat (limited to 'js/tests/unit/tooltip.js')
-rw-r--r--js/tests/unit/tooltip.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/unit/tooltip.js b/js/tests/unit/tooltip.js
index 087de80dd9..b9b003dd1d 100644
--- a/js/tests/unit/tooltip.js
+++ b/js/tests/unit/tooltip.js
@@ -332,7 +332,7 @@ $(function () {
var tooltip = container.find('.tooltip')
start()
- ok(Math.round(tooltip.offset().top + tooltip.outerHeight()) <= Math.round(tooltiped.offset().top)
+ ok(Math.round(tooltip.offset().top + tooltip.outerHeight()) <= Math.round(tooltiped.offset().top))
container.remove()
}, 100)
})