mirror of
https://github.com/l-lin/font-awesome-animation.git
synced 2024-12-30 23:41:31 +08:00
1f221284e5
* Folder reorganization * Using myth to generate prefixes * Change graphical charter
14 lines
365 B
JavaScript
14 lines
365 B
JavaScript
$(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')
|
|
})
|
|
|
|
})
|