2011-12-20 18:02:47 -08:00
|
|
|
$(function () {
|
|
|
|
|
2013-09-18 19:50:02 +03:00
|
|
|
module('transition')
|
2011-12-20 18:02:47 -08:00
|
|
|
|
2013-09-18 19:50:02 +03:00
|
|
|
test('should be defined on jquery support object', function () {
|
2012-04-14 16:29:53 -07:00
|
|
|
ok($.support.transition !== undefined, 'transition object is defined')
|
2011-12-20 18:02:47 -08:00
|
|
|
})
|
|
|
|
|
2013-09-18 19:50:02 +03:00
|
|
|
test('should provide an end object', function () {
|
2012-01-28 01:35:13 -08:00
|
|
|
ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
|
2011-12-20 18:02:47 -08:00
|
|
|
})
|
|
|
|
|
2013-04-23 17:34:27 +10:00
|
|
|
})
|