Set up static files correctly

Working authentication
This commit is contained in:
tjp03u
2014-10-23 23:42:53 +01:00
parent c2beb24487
commit 33b454684d
141 changed files with 39734 additions and 2 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')
})
})