2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

fix unit test for twipsy

This commit is contained in:
Jacob Thornton
2011-12-22 19:28:58 -08:00
parent 49fb910b11
commit ea23461970
+2 -2
View File
@@ -30,10 +30,10 @@ $(function () {
$.support.transition = false
var twipsy = $('<a href="#" rel="twipsy" title="Another twipsy"></a>')
.appendTo('#qunit-fixture')
.twipsy({placement: 'below'})
.twipsy({placement: 'bottom'})
.twipsy('show')
ok($(".twipsy").hasClass('fade below in'), 'has correct classes applied')
ok($(".twipsy").hasClass('fade bottom in'), 'has correct classes applied')
twipsy.twipsy('hide')
})