mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
118 lines
4.2 KiB
JavaScript
118 lines
4.2 KiB
JavaScript
$(function () {
|
|
'use strict';
|
|
|
|
module('scrollspy plugin')
|
|
|
|
test('should be defined on jquery object', function () {
|
|
ok($(document.body).scrollspy, 'scrollspy method is defined')
|
|
})
|
|
|
|
module('scrollspy', {
|
|
setup: function () {
|
|
// Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
|
|
$.fn.bootstrapScrollspy = $.fn.scrollspy.noConflict()
|
|
},
|
|
teardown: function () {
|
|
$.fn.scrollspy = $.fn.bootstrapScrollspy
|
|
delete $.fn.bootstrapScrollspy
|
|
}
|
|
})
|
|
|
|
test('should provide no conflict', function () {
|
|
ok(!$.fn.scrollspy, 'scrollspy was set back to undefined (org value)')
|
|
})
|
|
|
|
test('should return element', function () {
|
|
ok($(document.body).bootstrapScrollspy()[0] == document.body, 'document.body returned')
|
|
})
|
|
|
|
test('should switch active class on scroll', function () {
|
|
var sectionHTML = '<div id="masthead"></div>'
|
|
$(sectionHTML).append('#qunit-fixture')
|
|
var topbarHTML = '<div class="topbar">' +
|
|
'<div class="topbar-inner">' +
|
|
'<div class="container">' +
|
|
'<h3><a href="#">Bootstrap</a></h3>' +
|
|
'<li><a href="#masthead">Overview</a></li>' +
|
|
'</ul>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>'
|
|
var $topbar = $(topbarHTML).bootstrapScrollspy()
|
|
|
|
$(sectionHTML).append('#qunit-fixture')
|
|
ok($topbar.find('.active', true))
|
|
})
|
|
|
|
asyncTest('should only switch active class on current target', function () {
|
|
expect(1);
|
|
var sectionHTML = '<div id="root" class="active">' +
|
|
'<div class="topbar">' +
|
|
'<div class="topbar-inner">' +
|
|
'<div class="container" id="ss-target">' +
|
|
'<ul class="nav">' +
|
|
'<li><a href="#masthead">Overview</a></li>' +
|
|
'<li><a href="#detail">Detail</a></li>' +
|
|
'</ul>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'<div id="scrollspy-example" style="height: 100px; overflow: auto;">' +
|
|
'<div style="height: 200px;">' +
|
|
'<h4 id="masthead">Overview</h4>' +
|
|
'<p style="height: 200px">' +
|
|
'Ad leggings keytar, brunch id art party dolor labore.' +
|
|
'</p>' +
|
|
'</div>' +
|
|
'<div style="height: 200px;">' +
|
|
'<h4 id="detail">Detail</h4>' +
|
|
'<p style="height: 200px">' +
|
|
'Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard.' +
|
|
'</p>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>'
|
|
var $section = $(sectionHTML).appendTo('#qunit-fixture')
|
|
var $scrollSpy = $section
|
|
.show()
|
|
.find('#scrollspy-example')
|
|
.bootstrapScrollspy({ target: '#ss-target' })
|
|
|
|
$scrollSpy.on('scroll.bs.scrollspy', function () {
|
|
ok($section.hasClass('active'), 'Active class still on root node')
|
|
start()
|
|
})
|
|
$scrollSpy.scrollTop(350);
|
|
})
|
|
|
|
asyncTest('middle navigation option correctly selected when large offset is used', function () {
|
|
expect(3);
|
|
var sectionHTML = '<div id="header" style="height: 500px;"></div>' +
|
|
'<nav id="navigation" class="navbar">' +
|
|
'<ul class="nav navbar-nav">' +
|
|
'<li class="active"><a id="one-link" href="#one">One</a></li>' +
|
|
'<li><a id="two-link" href="#two">Two</a></li>' +
|
|
'<li><a id="three-link" href="#three">Three</a></li>' +
|
|
'</ul>' +
|
|
'</nav>' +
|
|
'<div id="content" style="height: 200px; overflow-y: auto;">' +
|
|
'<div id="one" style="height: 500px;"></div>' +
|
|
'<div id="two" style="height: 300px;"></div>' +
|
|
'<div id="three" style="height: 10px;"></div>' +
|
|
'</div>'
|
|
var $section = $(sectionHTML).appendTo('#qunit-fixture')
|
|
var $scrollSpy = $section
|
|
.show()
|
|
.filter('#content')
|
|
$scrollSpy.bootstrapScrollspy({ target: '#navigation', offset: $scrollSpy.position().top })
|
|
|
|
$scrollSpy.on('scroll.bs.scrollspy', function () {
|
|
ok(!$section.find('#one-link').parent().hasClass('active'), 'Active class removed from first section')
|
|
ok($section.find('#two-link').parent().hasClass('active'), 'Active class on middle section')
|
|
ok(!$section.find('#three-link').parent().hasClass('active'), 'Active class not on last section')
|
|
start()
|
|
})
|
|
$scrollSpy.scrollTop(550);
|
|
})
|
|
})
|