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