author | stetrabby <info@trabucchi.de> |
Fri, 20 Dec 2013 22:49:16 +0100 | |
changeset 54 | 0ded9d7748b7 |
permissions | -rwxr-xr-x |
info@54 | 1 |
$(function () { |
info@54 | 2 |
|
info@54 | 3 |
module("affix") |
info@54 | 4 |
|
info@54 | 5 |
test("should provide no conflict", function () { |
info@54 | 6 |
var affix = $.fn.affix.noConflict() |
info@54 | 7 |
ok(!$.fn.affix, 'affix was set back to undefined (org value)') |
info@54 | 8 |
$.fn.affix = affix |
info@54 | 9 |
}) |
info@54 | 10 |
|
info@54 | 11 |
test("should be defined on jquery object", function () { |
info@54 | 12 |
ok($(document.body).affix, 'affix method is defined') |
info@54 | 13 |
}) |
info@54 | 14 |
|
info@54 | 15 |
test("should return element", function () { |
info@54 | 16 |
ok($(document.body).affix()[0] == document.body, 'document.body returned') |
info@54 | 17 |
}) |
info@54 | 18 |
|
info@54 | 19 |
test("should exit early if element is not visible", function () { |
info@54 | 20 |
var $affix = $('<div style="display: none"></div>').affix() |
info@54 | 21 |
$affix.data('bs.affix').checkPosition() |
info@54 | 22 |
ok(!$affix.hasClass('affix'), 'affix class was not added') |
info@54 | 23 |
}) |
info@54 | 24 |
|
info@54 | 25 |
}) |