2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Require comma on left side

This commit is contained in:
Zlatan Vasović
2013-12-15 20:04:32 +01:00
parent 2ea370f93b
commit ba3639b202
14 changed files with 99 additions and 98 deletions
+4 -4
View File
@@ -18,8 +18,8 @@ $(function () {
test('should switch active class on scroll', function () {
var sectionHTML = '<div id="masthead"></div>'
, $section = $(sectionHTML).append('#qunit-fixture')
, topbarHTML = '<div class="topbar">'
$section = $(sectionHTML).append('#qunit-fixture'),
topbarHTML = '<div class="topbar">'
+ '<div class="topbar-inner">'
+ '<div class="container">'
+ '<h3><a href="#">Bootstrap</a></h3>'
@@ -28,8 +28,8 @@ $(function () {
+ '</ul>'
+ '</div>'
+ '</div>'
+ '</div>'
, $topbar = $(topbarHTML).scrollspy()
+ '</div>',
$topbar = $(topbarHTML).scrollspy()
ok($topbar.find('.active', true))
})