mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-14 17:40:59 +00:00
13 lines
343 B
JavaScript
13 lines
343 B
JavaScript
|
|
$(function () {
|
||
|
|
|
||
|
|
module("bootstrap-transition")
|
||
|
|
|
||
|
|
test("should be defined on jquery support object", function () {
|
||
|
|
ok($.support.transition != undefined, 'transition object is defined')
|
||
|
|
})
|
||
|
|
|
||
|
|
test("should provide an end object", function () {
|
||
|
|
ok($.support.transition.end, 'end string is defined')
|
||
|
|
})
|
||
|
|
|
||
|
|
})
|