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

fix bug in tab show/shown relatedTarget unit test

This commit is contained in:
Chris Rebert 2015-01-20 20:16:42 -08:00
parent b56d97f210
commit df73535a2d

View File

@ -93,10 +93,10 @@ $(function () {
.find('ul > li:last a')
.on('show.bs.tab', function (e) {
equal(e.relatedTarget.hash, '#1-1', 'references correct element as relatedTarget')
done()
})
.on('shown.bs.tab', function (e) {
equal(e.relatedTarget.hash, '#1-1', 'references correct element as relatedTarget')
done()
})
.bootstrapTab('show')
})