mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
13 lines
No EOL
373 B
JavaScript
13 lines
No EOL
373 B
JavaScript
$(function () {
|
|
|
|
module("bootstrap-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')
|
|
})
|
|
|
|
}) |