Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bootstrap-transition.js « unit « tests « js - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 086773fa272f17a3e4d2b11c006fb1cf21493135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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')
      })

})