Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
7f9ff0ba
Commit
7f9ff0ba
authored
12 years ago
by
fat
Browse files
Options
Download
Email Patches
Plain Diff
add js support for carousel indicators
parent
e9eff0cb
6 merge requests
!6821
Typeahead updater
,
!6666
Patch 1
,
!6610
Add outline for input[type="image"]
,
!6546
3.0.0 wip - fixed the issue in which the test pid isn't killed if a test fails
,
!6503
control markup changes added
,
!6345
Input classes addition
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
docs/assets/js/bootstrap-carousel.js
+20
-6
docs/assets/js/bootstrap-carousel.js
docs/assets/js/bootstrap-modal.js
+1
-2
docs/assets/js/bootstrap-modal.js
docs/assets/js/bootstrap.js
+21
-8
docs/assets/js/bootstrap.js
docs/assets/js/bootstrap.min.js
+1
-1
docs/assets/js/bootstrap.min.js
docs/javascript.html
+5
-0
docs/javascript.html
docs/templates/pages/javascript.mustache
+5
-0
docs/templates/pages/javascript.mustache
js/bootstrap-carousel.js
+19
-6
js/bootstrap-carousel.js
js/bootstrap-modal.js
+1
-2
js/bootstrap-modal.js
with
73 additions
and
25 deletions
+73
-25
docs/assets/js/bootstrap-carousel.js
+
20
-
6
View file @
7f9ff0ba
...
...
@@ -28,6 +28,7 @@
var
Carousel
=
function
(
element
,
options
)
{
this
.
$element
=
$
(
element
)
this
.
$indicators
=
this
.
$element
.
find
(
'
.carousel-indicators
'
)
this
.
options
=
options
this
.
options
.
pause
==
'
hover
'
&&
this
.
$element
.
on
(
'
mouseenter
'
,
$
.
proxy
(
this
.
pause
,
this
))
...
...
@@ -44,13 +45,17 @@
return
this
}
,
getActiveIndex
:
function
()
{
this
.
$active
=
this
.
$element
.
find
(
'
.item.active
'
)
this
.
$items
=
this
.
$active
.
parent
().
children
()
return
this
.
$items
.
index
(
this
.
$active
)
}
,
to
:
function
(
pos
)
{
var
$active
=
this
.
$element
.
find
(
'
.item.active
'
)
,
children
=
$active
.
parent
().
children
()
,
activePos
=
children
.
index
(
$active
)
var
activeIndex
=
this
.
getActiveIndex
()
,
that
=
this
if
(
pos
>
(
c
hi
ldren
.
length
-
1
)
||
pos
<
0
)
return
if
(
pos
>
(
t
hi
s
.
$items
.
length
-
1
)
||
pos
<
0
)
return
if
(
this
.
sliding
)
{
return
this
.
$element
.
one
(
'
slid
'
,
function
()
{
...
...
@@ -58,11 +63,11 @@
})
}
if
(
active
Pos
==
pos
)
{
if
(
active
Index
==
pos
)
{
return
this
.
pause
().
cycle
()
}
return
this
.
slide
(
pos
>
active
Pos
?
'
next
'
:
'
prev
'
,
$
(
c
hi
ldren
[
pos
]))
return
this
.
slide
(
pos
>
active
Index
?
'
next
'
:
'
prev
'
,
$
(
t
hi
s
.
$items
[
pos
]))
}
,
pause
:
function
(
e
)
{
...
...
@@ -92,6 +97,7 @@
,
isCycling
=
this
.
interval
,
direction
=
type
==
'
next
'
?
'
left
'
:
'
right
'
,
fallback
=
type
==
'
next
'
?
'
first
'
:
'
last
'
,
$nextIndicator
,
that
=
this
,
e
...
...
@@ -107,6 +113,14 @@
if
(
$next
.
hasClass
(
'
active
'
))
return
if
(
this
.
$indicators
.
length
)
{
this
.
$indicators
.
find
(
'
.active
'
).
removeClass
(
'
active
'
)
this
.
$element
.
one
(
'
slid
'
,
function
()
{
$nextIndicator
=
$
(
that
.
$indicators
.
children
()[
that
.
getActiveIndex
()])
$nextIndicator
&&
$nextIndicator
.
addClass
(
'
active
'
)
})
}
if
(
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
slide
'
))
{
this
.
$element
.
trigger
(
e
)
if
(
e
.
isDefaultPrevented
())
return
...
...
This diff is collapsed.
Click to expand it.
docs/assets/js/bootstrap-modal.js
+
1
-
2
View file @
7f9ff0ba
...
...
@@ -60,8 +60,7 @@
that
.
$element
.
appendTo
(
document
.
body
)
//don't move modals dom position
}
that
.
$element
.
show
()
that
.
$element
.
show
()
if
(
transition
)
{
that
.
$element
[
0
].
offsetWidth
// force reflow
...
...
This diff is collapsed.
Click to expand it.
docs/assets/js/bootstrap.js
+
21
-
8
View file @
7f9ff0ba
...
...
@@ -289,6 +289,7 @@
var
Carousel
=
function
(
element
,
options
)
{
this
.
$element
=
$
(
element
)
this
.
$indicators
=
this
.
$element
.
find
(
'
.carousel-indicators
'
)
this
.
options
=
options
this
.
options
.
pause
==
'
hover
'
&&
this
.
$element
.
on
(
'
mouseenter
'
,
$
.
proxy
(
this
.
pause
,
this
))
...
...
@@ -305,13 +306,17 @@
return
this
}
,
getActiveIndex
:
function
()
{
this
.
$active
=
this
.
$element
.
find
(
'
.item.active
'
)
this
.
$items
=
this
.
$active
.
parent
().
children
()
return
this
.
$items
.
index
(
this
.
$active
)
}
,
to
:
function
(
pos
)
{
var
$active
=
this
.
$element
.
find
(
'
.item.active
'
)
,
children
=
$active
.
parent
().
children
()
,
activePos
=
children
.
index
(
$active
)
var
activeIndex
=
this
.
getActiveIndex
()
,
that
=
this
if
(
pos
>
(
c
hi
ldren
.
length
-
1
)
||
pos
<
0
)
return
if
(
pos
>
(
t
hi
s
.
$items
.
length
-
1
)
||
pos
<
0
)
return
if
(
this
.
sliding
)
{
return
this
.
$element
.
one
(
'
slid
'
,
function
()
{
...
...
@@ -319,11 +324,11 @@
})
}
if
(
active
Pos
==
pos
)
{
if
(
active
Index
==
pos
)
{
return
this
.
pause
().
cycle
()
}
return
this
.
slide
(
pos
>
active
Pos
?
'
next
'
:
'
prev
'
,
$
(
c
hi
ldren
[
pos
]))
return
this
.
slide
(
pos
>
active
Index
?
'
next
'
:
'
prev
'
,
$
(
t
hi
s
.
$items
[
pos
]))
}
,
pause
:
function
(
e
)
{
...
...
@@ -353,6 +358,7 @@
,
isCycling
=
this
.
interval
,
direction
=
type
==
'
next
'
?
'
left
'
:
'
right
'
,
fallback
=
type
==
'
next
'
?
'
first
'
:
'
last
'
,
$nextIndicator
,
that
=
this
,
e
...
...
@@ -368,6 +374,14 @@
if
(
$next
.
hasClass
(
'
active
'
))
return
if
(
this
.
$indicators
.
length
)
{
this
.
$indicators
.
find
(
'
.active
'
).
removeClass
(
'
active
'
)
this
.
$element
.
one
(
'
slid
'
,
function
()
{
$nextIndicator
=
$
(
that
.
$indicators
.
children
()[
that
.
getActiveIndex
()])
$nextIndicator
&&
$nextIndicator
.
addClass
(
'
active
'
)
})
}
if
(
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
slide
'
))
{
this
.
$element
.
trigger
(
e
)
if
(
e
.
isDefaultPrevented
())
return
...
...
@@ -832,8 +846,7 @@
that
.
$element
.
appendTo
(
document
.
body
)
//don't move modals dom position
}
that
.
$element
.
show
()
that
.
$element
.
show
()
if
(
transition
)
{
that
.
$element
[
0
].
offsetWidth
// force reflow
...
...
This diff is collapsed.
Click to expand it.
docs/assets/js/bootstrap.min.js
+
1
-
1
View file @
7f9ff0ba
This diff is collapsed.
Click to expand it.
docs/javascript.html
+
5
-
0
View file @
7f9ff0ba
...
...
@@ -1422,6 +1422,11 @@ $('#myCollapsible').on('hidden', function () {
<p>
The slideshow below shows a generic plugin and component for cycling through elements like a carousel.
</p>
<div
class=
"bs-docs-example"
>
<div
id=
"myCarousel"
class=
"carousel slide"
>
<ol
class=
"carousel-indicators"
>
<li
class=
"active"
></li>
<li></li>
<li></li>
</ol>
<div
class=
"carousel-inner"
>
<div
class=
"item active"
>
<img
src=
"assets/img/bootstrap-mdo-sfmoma-01.jpg"
alt=
""
>
...
...
This diff is collapsed.
Click to expand it.
docs/templates/pages/javascript.mustache
+
5
-
0
View file @
7f9ff0ba
...
...
@@ -1352,6 +1352,11 @@ $('#myCollapsible').on('hidden', function () {
<p>
{{
_i
}}
The slideshow below shows a generic plugin and component for cycling through elements like a carousel.
{{/
i
}}
</p>
<div
class=
"bs-docs-example"
>
<div
id=
"myCarousel"
class=
"carousel slide"
>
<ol
class=
"carousel-indicators"
>
<li
class=
"active"
></li>
<li></li>
<li></li>
</ol>
<div
class=
"carousel-inner"
>
<div
class=
"item active"
>
<img
src=
"assets/img/bootstrap-mdo-sfmoma-01.jpg"
alt=
""
>
...
...
This diff is collapsed.
Click to expand it.
js/bootstrap-carousel.js
+
19
-
6
View file @
7f9ff0ba
...
...
@@ -28,6 +28,7 @@
var
Carousel
=
function
(
element
,
options
)
{
this
.
$element
=
$
(
element
)
this
.
$indicators
=
this
.
$element
.
find
(
'
.carousel-indicators
'
)
this
.
options
=
options
this
.
options
.
pause
==
'
hover
'
&&
this
.
$element
.
on
(
'
mouseenter
'
,
$
.
proxy
(
this
.
pause
,
this
))
...
...
@@ -44,13 +45,17 @@
return
this
}
,
getActiveIndex
:
function
()
{
this
.
$active
=
this
.
$element
.
find
(
'
.item.active
'
)
this
.
$items
=
this
.
$active
.
parent
().
children
()
return
this
.
$items
.
index
(
this
.
$active
)
}
,
to
:
function
(
pos
)
{
var
$active
=
this
.
$element
.
find
(
'
.item.active
'
)
,
children
=
$active
.
parent
().
children
()
,
activePos
=
children
.
index
(
$active
)
var
activeIndex
=
this
.
getActiveIndex
()
,
that
=
this
if
(
pos
>
(
c
hi
ldren
.
length
-
1
)
||
pos
<
0
)
return
if
(
pos
>
(
t
hi
s
.
$items
.
length
-
1
)
||
pos
<
0
)
return
if
(
this
.
sliding
)
{
return
this
.
$element
.
one
(
'
slid
'
,
function
()
{
...
...
@@ -58,11 +63,11 @@
})
}
if
(
active
Pos
==
pos
)
{
if
(
active
Index
==
pos
)
{
return
this
.
pause
().
cycle
()
}
return
this
.
slide
(
pos
>
active
Pos
?
'
next
'
:
'
prev
'
,
$
(
c
hi
ldren
[
pos
]))
return
this
.
slide
(
pos
>
active
Index
?
'
next
'
:
'
prev
'
,
$
(
t
hi
s
.
$items
[
pos
]))
}
,
pause
:
function
(
e
)
{
...
...
@@ -107,6 +112,14 @@
if
(
$next
.
hasClass
(
'
active
'
))
return
if
(
this
.
$indicators
.
length
)
{
this
.
$indicators
.
find
(
'
.active
'
).
removeClass
(
'
active
'
)
this
.
$element
.
one
(
'
slid
'
,
function
()
{
var
$nextIndicator
=
$
(
that
.
$indicators
.
children
()[
that
.
getActiveIndex
()])
$nextIndicator
&&
$nextIndicator
.
addClass
(
'
active
'
)
})
}
if
(
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
slide
'
))
{
this
.
$element
.
trigger
(
e
)
if
(
e
.
isDefaultPrevented
())
return
...
...
This diff is collapsed.
Click to expand it.
js/bootstrap-modal.js
+
1
-
2
View file @
7f9ff0ba
...
...
@@ -60,8 +60,7 @@
that
.
$element
.
appendTo
(
document
.
body
)
//don't move modals dom position
}
that
.
$element
.
show
()
that
.
$element
.
show
()
if
(
transition
)
{
that
.
$element
[
0
].
offsetWidth
// force reflow
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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
Menu
Explore
Projects
Groups
Snippets