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
59153205
Commit
59153205
authored
Jun 20, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
run make on js files
parent
3875a9f3
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
4 deletions
+26
-4
docs/assets/js/bootstrap-carousel.js
docs/assets/js/bootstrap-carousel.js
+1
-1
docs/assets/js/bootstrap-popover.js
docs/assets/js/bootstrap-popover.js
+4
-0
docs/assets/js/bootstrap-tooltip.js
docs/assets/js/bootstrap-tooltip.js
+4
-0
docs/assets/js/bootstrap.js
docs/assets/js/bootstrap.js
+9
-1
docs/assets/js/bootstrap.min.js
docs/assets/js/bootstrap.min.js
+1
-1
docs/javascript.html
docs/javascript.html
+7
-1
No files found.
docs/assets/js/bootstrap-carousel.js
View file @
59153205
...
@@ -88,7 +88,7 @@
...
@@ -88,7 +88,7 @@
}
}
,
slide
:
function
(
type
,
next
)
{
,
slide
:
function
(
type
,
next
)
{
var
$active
=
this
.
$element
.
find
(
'
.active
'
)
var
$active
=
this
.
$element
.
find
(
'
.
item.
active
'
)
,
$next
=
next
||
$active
[
type
]()
,
$next
=
next
||
$active
[
type
]()
,
isCycling
=
this
.
interval
,
isCycling
=
this
.
interval
,
direction
=
type
==
'
next
'
?
'
left
'
:
'
right
'
,
direction
=
type
==
'
next
'
?
'
left
'
:
'
right
'
...
...
docs/assets/js/bootstrap-popover.js
View file @
59153205
...
@@ -71,6 +71,10 @@
...
@@ -71,6 +71,10 @@
return
this
.
$tip
return
this
.
$tip
}
}
,
destroy
:
function
()
{
this
.
$element
.
off
().
removeData
(
'
popover
'
)
}
})
})
...
...
docs/assets/js/bootstrap-tooltip.js
View file @
59153205
...
@@ -235,6 +235,10 @@
...
@@ -235,6 +235,10 @@
this
[
this
.
tip
().
hasClass
(
'
in
'
)
?
'
hide
'
:
'
show
'
]()
this
[
this
.
tip
().
hasClass
(
'
in
'
)
?
'
hide
'
:
'
show
'
]()
}
}
,
destroy
:
function
()
{
this
.
$element
.
off
().
removeData
(
'
tooltip
'
)
}
}
}
...
...
docs/assets/js/bootstrap.js
View file @
59153205
...
@@ -332,7 +332,7 @@
...
@@ -332,7 +332,7 @@
}
}
,
slide
:
function
(
type
,
next
)
{
,
slide
:
function
(
type
,
next
)
{
var
$active
=
this
.
$element
.
find
(
'
.active
'
)
var
$active
=
this
.
$element
.
find
(
'
.
item.
active
'
)
,
$next
=
next
||
$active
[
type
]()
,
$next
=
next
||
$active
[
type
]()
,
isCycling
=
this
.
interval
,
isCycling
=
this
.
interval
,
direction
=
type
==
'
next
'
?
'
left
'
:
'
right
'
,
direction
=
type
==
'
next
'
?
'
left
'
:
'
right
'
...
@@ -1188,6 +1188,10 @@
...
@@ -1188,6 +1188,10 @@
this
[
this
.
tip
().
hasClass
(
'
in
'
)
?
'
hide
'
:
'
show
'
]()
this
[
this
.
tip
().
hasClass
(
'
in
'
)
?
'
hide
'
:
'
show
'
]()
}
}
,
destroy
:
function
()
{
this
.
$element
.
off
().
removeData
(
'
tooltip
'
)
}
}
}
...
@@ -1291,6 +1295,10 @@
...
@@ -1291,6 +1295,10 @@
return
this
.
$tip
return
this
.
$tip
}
}
,
destroy
:
function
()
{
this
.
$element
.
off
().
removeData
(
'
popover
'
)
}
})
})
...
...
docs/assets/js/bootstrap.min.js
View file @
59153205
This diff is collapsed.
Click to expand it.
docs/javascript.html
View file @
59153205
...
@@ -830,6 +830,9 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
...
@@ -830,6 +830,9 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
<h4>
.tooltip('toggle')
</h4>
<h4>
.tooltip('toggle')
</h4>
<p>
Toggles an element's tooltip.
</p>
<p>
Toggles an element's tooltip.
</p>
<pre
class=
"prettyprint linenums"
>
$('#element').tooltip('toggle')
</pre>
<pre
class=
"prettyprint linenums"
>
$('#element').tooltip('toggle')
</pre>
<h4>
.tooltip('destroy')
</h4>
<p>
Destroys an element's tooltip.
</p>
<pre
class=
"prettyprint linenums"
>
$('#element').tooltip('destroy')
</pre>
</section>
</section>
...
@@ -896,7 +899,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
...
@@ -896,7 +899,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
<td>
trigger
</td>
<td>
trigger
</td>
<td>
string
</td>
<td>
string
</td>
<td>
'hover'
</td>
<td>
'hover'
</td>
<td>
how
tooltip
is triggered - hover | focus | manual
</td>
<td>
how
popover
is triggered - hover | focus | manual
</td>
</tr>
</tr>
<tr>
<tr>
<td>
title
</td>
<td>
title
</td>
...
@@ -942,6 +945,9 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
...
@@ -942,6 +945,9 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
<h4>
.popover('toggle')
</h4>
<h4>
.popover('toggle')
</h4>
<p>
Toggles an elements popover.
</p>
<p>
Toggles an elements popover.
</p>
<pre
class=
"prettyprint linenums"
>
$('#element').popover('toggle')
</pre>
<pre
class=
"prettyprint linenums"
>
$('#element').popover('toggle')
</pre>
<h4>
.popover('destroy')
</h4>
<p>
Destroys an element's popover.
</p>
<pre
class=
"prettyprint linenums"
>
$('#element').popover('destroy')
</pre>
</section>
</section>
...
...
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