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