bootstrap-transition.js 374 B

12345678910111213
  1. $(function () {
  2. module("bootstrap-transition")
  3. test("should be defined on jquery support object", function () {
  4. ok($.support.transition !== undefined, 'transition object is defined')
  5. })
  6. test("should provide an end object", function () {
  7. ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
  8. })
  9. })