info@54
|
1 |
$(function () {
|
info@54
|
2 |
|
info@54
|
3 |
module("scrollspy")
|
info@54
|
4 |
|
info@54
|
5 |
test("should provide no conflict", function () {
|
info@54
|
6 |
var scrollspy = $.fn.scrollspy.noConflict()
|
info@54
|
7 |
ok(!$.fn.scrollspy, 'scrollspy was set back to undefined (org value)')
|
info@54
|
8 |
$.fn.scrollspy = scrollspy
|
info@54
|
9 |
})
|
info@54
|
10 |
|
info@54
|
11 |
test("should be defined on jquery object", function () {
|
info@54
|
12 |
ok($(document.body).scrollspy, 'scrollspy method is defined')
|
info@54
|
13 |
})
|
info@54
|
14 |
|
info@54
|
15 |
test("should return element", function () {
|
info@54
|
16 |
ok($(document.body).scrollspy()[0] == document.body, 'document.body returned')
|
info@54
|
17 |
})
|
info@54
|
18 |
|
info@54
|
19 |
test("should switch active class on scroll", function () {
|
info@54
|
20 |
var sectionHTML = '<div id="masthead"></div>'
|
info@54
|
21 |
, $section = $(sectionHTML).append('#qunit-fixture')
|
info@54
|
22 |
, topbarHTML ='<div class="topbar">'
|
info@54
|
23 |
+ '<div class="topbar-inner">'
|
info@54
|
24 |
+ '<div class="container">'
|
info@54
|
25 |
+ '<h3><a href="#">Bootstrap</a></h3>'
|
info@54
|
26 |
+ '<ul class="nav">'
|
info@54
|
27 |
+ '<li><a href="#masthead">Overview</a></li>'
|
info@54
|
28 |
+ '</ul>'
|
info@54
|
29 |
+ '</div>'
|
info@54
|
30 |
+ '</div>'
|
info@54
|
31 |
+ '</div>'
|
info@54
|
32 |
, $topbar = $(topbarHTML).scrollspy()
|
info@54
|
33 |
|
info@54
|
34 |
ok($topbar.find('.active', true))
|
info@54
|
35 |
})
|
info@54
|
36 |
|
info@54
|
37 |
})
|