blob: 39c415bc23fdc745b39579a0975d6ce9718f7368 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$(function () {
module("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')
})
})
|