1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-30 10:49:40 +02:00

Initial commit

This commit is contained in:
Michael Crosby 2013-06-08 15:12:14 -09:00
commit bec8f53386
218 changed files with 55344 additions and 0 deletions

13
assets/js/tests/unit/bootstrap-transition.js vendored Executable file
View file

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