Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
351f86e1
Commit
351f86e1
authored
Dec 06, 2013
by
Chris Rebert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some JS to pass jscs
parent
4be126e0
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
Gruntfile.js
Gruntfile.js
+1
-1
js/dropdown.js
js/dropdown.js
+1
-1
js/modal.js
js/modal.js
+1
-1
js/tests/unit/scrollspy.js
js/tests/unit/scrollspy.js
+1
-1
js/tests/unit/tooltip.js
js/tests/unit/tooltip.js
+3
-3
js/tooltip.js
js/tooltip.js
+1
-1
No files found.
Gruntfile.js
View file @
351f86e1
/* jshint node: true */
module
.
exports
=
function
(
grunt
)
{
module
.
exports
=
function
(
grunt
)
{
"
use strict
"
;
// Force use of Unix newlines
...
...
js/dropdown.js
View file @
351f86e1
...
...
@@ -85,7 +85,7 @@
if
(
e
.
keyCode
==
38
&&
index
>
0
)
index
--
// up
if
(
e
.
keyCode
==
40
&&
index
<
$items
.
length
-
1
)
index
++
// down
if
(
!~
index
)
index
=
0
if
(
!~
index
)
index
=
0
$items
.
eq
(
index
).
focus
()
}
...
...
js/modal.js
View file @
351f86e1
...
...
@@ -180,7 +180,7 @@
}
else
if
(
!
this
.
isShown
&&
this
.
$backdrop
)
{
this
.
$backdrop
.
removeClass
(
'
in
'
)
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
fade
'
)?
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
fade
'
)
?
this
.
$backdrop
.
one
(
$
.
support
.
transition
.
end
,
callback
)
.
emulateTransitionEnd
(
150
)
:
...
...
js/tests/unit/scrollspy.js
View file @
351f86e1
...
...
@@ -19,7 +19,7 @@ $(function () {
test
(
"
should switch active class on scroll
"
,
function
()
{
var
sectionHTML
=
'
<div id="masthead"></div>
'
,
$section
=
$
(
sectionHTML
).
append
(
'
#qunit-fixture
'
)
,
topbarHTML
=
'
<div class="topbar">
'
,
topbarHTML
=
'
<div class="topbar">
'
+
'
<div class="topbar-inner">
'
+
'
<div class="container">
'
+
'
<h3><a href="#">Bootstrap</a></h3>
'
...
...
js/tests/unit/tooltip.js
View file @
351f86e1
...
...
@@ -290,7 +290,7 @@ $(function () {
test
(
"
should place tooltips inside the body
"
,
function
()
{
var
tooltip
=
$
(
'
<a href="#" rel="tooltip" title="Another tooltip"></a>
'
)
.
appendTo
(
'
#qunit-fixture
'
)
.
tooltip
({
container
:
'
body
'
})
.
tooltip
({
container
:
'
body
'
})
.
tooltip
(
'
show
'
)
ok
(
$
(
"
body > .tooltip
"
).
length
,
'
inside the body
'
)
ok
(
!
$
(
"
#qunit-fixture > .tooltip
"
).
length
,
'
not found in parent
'
)
...
...
@@ -301,7 +301,7 @@ $(function () {
var
container
=
$
(
"
<div />
"
).
appendTo
(
"
body
"
)
.
css
({
position
:
"
absolute
"
,
width
:
200
,
height
:
200
,
bottom
:
0
,
left
:
0
})
,
tooltip
=
$
(
"
<a href='#' title='Very very very very very very very very long tooltip'>Hover me</a>
"
)
.
css
({
position
:
"
absolute
"
,
top
:
0
,
left
:
0
})
.
css
({
position
:
"
absolute
"
,
top
:
0
,
left
:
0
})
.
appendTo
(
container
)
.
tooltip
({
placement
:
"
top
"
,
animate
:
false
})
.
tooltip
(
"
show
"
)
...
...
@@ -347,7 +347,7 @@ $(function () {
.
tooltip
(
'
show
'
)
,
tooltip
=
container
.
find
(
"
.tooltip
"
)
ok
(
Math
.
round
(
target
.
offset
().
top
+
target
[
0
].
offsetHeight
/
2
-
tooltip
[
0
].
offsetHeight
/
2
)
===
Math
.
round
(
tooltip
.
offset
().
top
)
)
ok
(
Math
.
round
(
target
.
offset
().
top
+
(
target
[
0
].
offsetHeight
/
2
)
-
(
tooltip
[
0
].
offsetHeight
/
2
)
)
===
Math
.
round
(
tooltip
.
offset
().
top
)
)
target
.
tooltip
(
'
hide
'
)
})
...
...
js/tooltip.js
View file @
351f86e1
...
...
@@ -133,7 +133,7 @@
}
Tooltip
.
prototype
.
show
=
function
()
{
var
e
=
$
.
Event
(
'
show.bs.
'
+
this
.
type
)
var
e
=
$
.
Event
(
'
show.bs.
'
+
this
.
type
)
if
(
this
.
hasContent
()
&&
this
.
enabled
)
{
this
.
$element
.
trigger
(
e
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment