mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-28 21:34:57 +00:00
13 lines
374 B
JavaScript
Executable File
13 lines
374 B
JavaScript
Executable File
$(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 ? $.support.transition.end : true, 'end string is defined')
|
|
})
|
|
|
|
}) |