0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

fix @muan's unit test ;)

This commit is contained in:
fat 2013-07-17 21:17:39 -07:00
parent 102df4ff33
commit a7a9a14379

View File

@ -302,7 +302,7 @@ $(function () {
.tooltip('show') .tooltip('show')
, tooltip = container.find(".tooltip") , tooltip = container.find(".tooltip")
ok( Math.round(target.offset().top + target[0].offsetHeight/2 - tooltip[0].offsetHeight/2) === tooltip.offset().top ) ok( Math.round(target.offset().top + target[0].offsetHeight/2 - tooltip[0].offsetHeight/2) === Math.round(tooltip.offset().top) )
target.tooltip('hide') target.tooltip('hide')
}) })
}) })