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
95f91847
Commit
95f91847
authored
May 12, 2014
by
Jacob
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13578 from twbs/fat-versions
versions
parents
7e1f2994
f219fee0
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
23 additions
and
1 deletion
+23
-1
js/affix.js
js/affix.js
+3
-1
js/alert.js
js/alert.js
+2
-0
js/button.js
js/button.js
+2
-0
js/carousel.js
js/carousel.js
+2
-0
js/collapse.js
js/collapse.js
+2
-0
js/dropdown.js
js/dropdown.js
+2
-0
js/modal.js
js/modal.js
+2
-0
js/popover.js
js/popover.js
+2
-0
js/scrollspy.js
js/scrollspy.js
+2
-0
js/tab.js
js/tab.js
+2
-0
js/tooltip.js
js/tooltip.js
+2
-0
No files found.
js/affix.js
View file @
95f91847
...
...
@@ -27,7 +27,9 @@
this
.
checkPosition
()
}
Affix
.
RESET
=
'
affix affix-top affix-bottom
'
Affix
.
VERSION
=
'
3.1.1
'
Affix
.
RESET
=
'
affix affix-top affix-bottom
'
Affix
.
DEFAULTS
=
{
offset
:
0
...
...
js/alert.js
View file @
95f91847
...
...
@@ -18,6 +18,8 @@
$
(
el
).
on
(
'
click
'
,
dismiss
,
this
.
close
)
}
Alert
.
VERSION
=
'
3.1.1
'
Alert
.
prototype
.
close
=
function
(
e
)
{
var
$this
=
$
(
this
)
var
selector
=
$this
.
attr
(
'
data-target
'
)
...
...
js/button.js
View file @
95f91847
...
...
@@ -19,6 +19,8 @@
this
.
isLoading
=
false
}
Button
.
VERSION
=
'
3.1.1
'
Button
.
DEFAULTS
=
{
loadingText
:
'
loading...
'
}
...
...
js/carousel.js
View file @
95f91847
...
...
@@ -28,6 +28,8 @@
.
on
(
'
mouseleave
'
,
$
.
proxy
(
this
.
cycle
,
this
))
}
Carousel
.
VERSION
=
'
3.1.1
'
Carousel
.
DEFAULTS
=
{
interval
:
5000
,
pause
:
'
hover
'
,
...
...
js/collapse.js
View file @
95f91847
...
...
@@ -22,6 +22,8 @@
if
(
this
.
options
.
toggle
)
this
.
toggle
()
}
Collapse
.
VERSION
=
'
3.1.1
'
Collapse
.
DEFAULTS
=
{
toggle
:
true
}
...
...
js/dropdown.js
View file @
95f91847
...
...
@@ -19,6 +19,8 @@
$
(
element
).
on
(
'
click.bs.dropdown
'
,
this
.
toggle
)
}
Dropdown
.
VERSION
=
'
3.1.1
'
Dropdown
.
prototype
.
toggle
=
function
(
e
)
{
var
$this
=
$
(
this
)
...
...
js/modal.js
View file @
95f91847
...
...
@@ -30,6 +30,8 @@
}
}
Modal
.
VERSION
=
'
3.1.1
'
Modal
.
DEFAULTS
=
{
backdrop
:
true
,
keyboard
:
true
,
...
...
js/popover.js
View file @
95f91847
...
...
@@ -19,6 +19,8 @@
if
(
!
$
.
fn
.
tooltip
)
throw
new
Error
(
'
Popover requires tooltip.js
'
)
Popover
.
VERSION
=
'
3.1.1
'
Popover
.
DEFAULTS
=
$
.
extend
({},
$
.
fn
.
tooltip
.
Constructor
.
DEFAULTS
,
{
placement
:
'
right
'
,
trigger
:
'
click
'
,
...
...
js/scrollspy.js
View file @
95f91847
...
...
@@ -32,6 +32,8 @@
this
.
process
()
}
ScrollSpy
.
VERSION
=
'
3.1.1
'
ScrollSpy
.
DEFAULTS
=
{
offset
:
10
}
...
...
js/tab.js
View file @
95f91847
...
...
@@ -17,6 +17,8 @@
this
.
element
=
$
(
element
)
}
Tab
.
VERSION
=
'
3.1.1
'
Tab
.
prototype
.
show
=
function
()
{
var
$this
=
this
.
element
var
$ul
=
$this
.
closest
(
'
ul:not(.dropdown-menu)
'
)
...
...
js/tooltip.js
View file @
95f91847
...
...
@@ -25,6 +25,8 @@
this
.
init
(
'
tooltip
'
,
element
,
options
)
}
Tooltip
.
VERSION
=
'
3.1.1
'
Tooltip
.
DEFAULTS
=
{
animation
:
true
,
placement
:
'
top
'
,
...
...
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