ÿØÿà JFIF ÿþ ÿÛ C ÿÛ C ÿÀ ÿÄ ÿÄ " #QrÿÄ ÿÄ & 1! A"2qQaáÿÚ ? Øy,æ/3JæÝ¹Èß²Ø5êXw²±ÉyR¾I0ó2PI¾IÌÚiMö¯þrìN&"KgX:íµnTJnLK @!-ýùúmë;ºgµ&ó±hw¯Õ@Ü9ñ-ë.²1<yà¹ïQÐUÛ?.¦èûbß±©Ö«Âw*V) `$bØÔëXÖ-ËTÜíGÚ3ð«g §¯JxU/ÂÅv_s(Hÿ @TñJÑãõçn!ÈgfbÓc:él[ðQe9ÀPLbÃãCµm[5¿ç'ªjglåÛí_§Úõl-;"PkÞÞÁQâ¼_Ñ^¢S x?"¸¦ùYé¨ÒOÈ q`~~ÚtËU¹CÚêV I1Áß_ÿÙ$(function () { 'use strict'; QUnit.module('collapse plugin') QUnit.test('should be defined on jquery object', function (assert) { assert.expect(1) assert.ok($(document.body).collapse, 'collapse method is defined') }) QUnit.module('collapse', { beforeEach: function () { // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode $.fn.bootstrapCollapse = $.fn.collapse.noConflict() }, afterEach: function () { $.fn.collapse = $.fn.bootstrapCollapse delete $.fn.bootstrapCollapse } }) QUnit.test('should provide no conflict', function (assert) { assert.expect(1) assert.strictEqual($.fn.collapse, undefined, 'collapse was set back to undefined (org value)') }) QUnit.test('should return jquery collection containing the element', function (assert) { assert.expect(2) var $el = $('
') var $collapse = $el.bootstrapCollapse() assert.ok($collapse instanceof $, 'returns jquery collection') assert.strictEqual($collapse[0], $el[0], 'collection contains element') }) QUnit.test('should show a collapsed element', function (assert) { assert.expect(2) var $el = $('').bootstrapCollapse('show') assert.ok($el.hasClass('in'), 'has class "in"') assert.ok(!/height/i.test($el.attr('style')), 'has height reset') }) QUnit.test('should hide a collapsed element', function (assert) { assert.expect(1) var $el = $('').bootstrapCollapse('hide') assert.ok(!$el.hasClass('in'), 'does not have class "in"') }) QUnit.test('should not fire shown when show is prevented', function (assert) { assert.expect(1) var done = assert.async() $('') .on('show.bs.collapse', function (e) { e.preventDefault() assert.ok(true, 'show event fired') done() }) .on('shown.bs.collapse', function () { assert.ok(false, 'shown event fired') }) .bootstrapCollapse('show') }) QUnit.test('should reset style to auto after finishing opening collapse', function (assert) { assert.expect(2) var done = assert.async() $('') .on('show.bs.collapse', function () { assert.strictEqual(this.style.height, '0px', 'height is 0px') }) .on('shown.bs.collapse', function () { assert.strictEqual(this.style.height, '', 'height is auto') done() }) .bootstrapCollapse('show') }) QUnit.test('should remove "collapsed" class from target when collapse is shown', function (assert) { assert.expect(1) var done = assert.async() var $target = $('').appendTo('#qunit-fixture') $('') .appendTo('#qunit-fixture') .on('shown.bs.collapse', function () { assert.ok(!$target.hasClass('collapsed'), 'target does not have collapsed class') done() }) $target.trigger('click') }) QUnit.test('should add "collapsed" class to target when collapse is hidden', function (assert) { assert.expect(1) var done = assert.async() var $target = $('').appendTo('#qunit-fixture') $('') .appendTo('#qunit-fixture') .on('hidden.bs.collapse', function () { assert.ok($target.hasClass('collapsed'), 'target has collapsed class') done() }) $target.trigger('click') }) QUnit.test('should remove "collapsed" class from all triggers targeting the collapse when the collapse is shown', function (assert) { assert.expect(2) var done = assert.async() var $target = $('').appendTo('#qunit-fixture') var $alt = $('').appendTo('#qunit-fixture') $('') .appendTo('#qunit-fixture') .on('shown.bs.collapse', function () { assert.ok(!$target.hasClass('collapsed'), 'target trigger does not have collapsed class') assert.ok(!$alt.hasClass('collapsed'), 'alt trigger does not have collapsed class') done() }) $target.trigger('click') }) QUnit.test('should add "collapsed" class to all triggers targeting the collapse when the collapse is hidden', function (assert) { assert.expect(2) var done = assert.async() var $target = $('').appendTo('#qunit-fixture') var $alt = $('').appendTo('#qunit-fixture') $('') .appendTo('#qunit-fixture') .on('hidden.bs.collapse', function () { assert.ok($target.hasClass('collapsed'), 'target has collapsed class') assert.ok($alt.hasClass('collapsed'), 'alt trigger has collapsed class') done() }) $target.trigger('click') }) QUnit.test('should not close a collapse when initialized with "show" option if already shown', function (assert) { assert.expect(0) var done = assert.async() var $test = $('') .appendTo('#qunit-fixture') .on('hide.bs.collapse', function () { assert.ok(false) }) $test.bootstrapCollapse('show') setTimeout(done, 0) }) QUnit.test('should open a collapse when initialized with "show" option if not already shown', function (assert) { assert.expect(1) var done = assert.async() var $test = $('') .appendTo('#qunit-fixture') .on('show.bs.collapse', function () { assert.ok(true) }) $test.bootstrapCollapse('show') setTimeout(done, 0) }) QUnit.test('should not show a collapse when initialized with "hide" option if already hidden', function (assert) { assert.expect(0) var done = assert.async() $('') .appendTo('#qunit-fixture') .on('show.bs.collapse', function () { assert.ok(false, 'showing a previously-uninitialized hidden collapse when the "hide" method is called') }) .bootstrapCollapse('hide') setTimeout(done, 0) }) QUnit.test('should hide a collapse when initialized with "hide" option if not already hidden', function (assert) { assert.expect(1) var done = assert.async() $('') .appendTo('#qunit-fixture') .on('hide.bs.collapse', function () { assert.ok(true, 'hiding a previously-uninitialized shown collapse when the "hide" method is called') }) .bootstrapCollapse('hide') setTimeout(done, 0) }) QUnit.test('should remove "collapsed" class from active accordion target', function (assert) { assert.expect(3) var done = assert.async() var accordionHTML = '