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

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

})