Minor fix to static file serving

This commit is contained in:
tomtom5152
2014-10-29 01:32:55 +00:00
parent b8cb25db67
commit 4bc4bdedc6
74 changed files with 25723 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
$(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')
})
})