2011-09-10 22:14:57 -07:00
|
|
|
$(function () {
|
|
|
|
|
2013-05-16 11:06:30 -07:00
|
|
|
module("scrollspy")
|
2011-09-10 22:14:57 -07:00
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
test("should provide no conflict", function () {
|
|
|
|
var scrollspy = $.fn.scrollspy.noConflict()
|
|
|
|
ok(!$.fn.scrollspy, 'scrollspy was set back to undefined (org value)')
|
|
|
|
$.fn.scrollspy = scrollspy
|
|
|
|
})
|
|
|
|
|
2011-09-10 22:14:57 -07:00
|
|
|
test("should be defined on jquery object", function () {
|
|
|
|
ok($(document.body).scrollspy, 'scrollspy method is defined')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should return element", function () {
|
|
|
|
ok($(document.body).scrollspy()[0] == document.body, 'document.body returned')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should switch active class on scroll", function () {
|
|
|
|
var sectionHTML = '<div id="masthead"></div>'
|
2011-12-20 18:02:47 -08:00
|
|
|
, $section = $(sectionHTML).append('#qunit-fixture')
|
2011-09-10 22:14:57 -07:00
|
|
|
, topbarHTML ='<div class="topbar">'
|
|
|
|
+ '<div class="topbar-inner">'
|
|
|
|
+ '<div class="container">'
|
|
|
|
+ '<h3><a href="#">Bootstrap</a></h3>'
|
|
|
|
+ '<ul class="nav">'
|
|
|
|
+ '<li><a href="#masthead">Overview</a></li>'
|
|
|
|
+ '</ul>'
|
|
|
|
+ '</div>'
|
|
|
|
+ '</div>'
|
|
|
|
+ '</div>'
|
2011-12-20 18:02:47 -08:00
|
|
|
, $topbar = $(topbarHTML).scrollspy()
|
2011-09-10 22:14:57 -07:00
|
|
|
|
2011-12-20 18:02:47 -08:00
|
|
|
ok($topbar.find('.active', true))
|
2011-09-10 22:14:57 -07:00
|
|
|
})
|
|
|
|
|
2013-04-23 17:34:27 +10:00
|
|
|
})
|