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
1 changed files with 1 additions and 1 deletions

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')
})