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
51f1f58b
Commit
51f1f58b
authored
Oct 23, 2014
by
Heinrich Fenkart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grunt
parent
98142567
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
11 deletions
+29
-11
dist/js/bootstrap.js
dist/js/bootstrap.js
+11
-2
dist/js/bootstrap.min.js
dist/js/bootstrap.min.js
+2
-2
docs/assets/js/customize.min.js
docs/assets/js/customize.min.js
+2
-2
docs/assets/js/raw-files.min.js
docs/assets/js/raw-files.min.js
+1
-1
docs/dist/js/bootstrap.js
docs/dist/js/bootstrap.js
+11
-2
docs/dist/js/bootstrap.min.js
docs/dist/js/bootstrap.min.js
+2
-2
No files found.
dist/js/bootstrap.js
View file @
51f1f58b
...
...
@@ -4,7 +4,16 @@
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if
(
typeof
jQuery
===
'
undefined
'
)
{
throw
new
Error
(
'
Bootstrap
\'
s JavaScript requires jQuery
'
)
}
if
(
typeof
jQuery
===
'
undefined
'
)
{
throw
new
Error
(
'
Bootstrap
\'
s JavaScript requires jQuery
'
)
}
+
function
(
$
)
{
var
version
=
$
.
fn
.
jquery
.
split
(
'
'
)[
0
].
split
(
'
.
'
)
if
((
version
[
0
]
<
2
&&
version
[
1
]
<
9
)
||
(
version
[
0
]
==
1
&&
version
[
1
]
==
9
&&
version
[
2
]
<
1
))
{
throw
new
Error
(
'
Bootstrap
\'
s JavaScript requires jQuery version 1.9.1 or higher
'
)
}
}(
jQuery
);
/* ========================================================================
* Bootstrap: transition.js v3.2.0
...
...
@@ -772,7 +781,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
if
(
!
$items
.
length
)
return
var
index
=
$items
.
index
(
$items
.
filter
(
'
:focus
'
)
)
var
index
=
$items
.
index
(
e
.
target
)
if
(
e
.
which
==
38
&&
index
>
0
)
index
--
// up
if
(
e
.
which
==
40
&&
index
<
$items
.
length
-
1
)
index
++
// down
...
...
dist/js/bootstrap.min.js
View file @
51f1f58b
This diff is collapsed.
Click to expand it.
docs/assets/js/customize.min.js
View file @
51f1f58b
This diff is collapsed.
Click to expand it.
docs/assets/js/raw-files.min.js
View file @
51f1f58b
This diff is collapsed.
Click to expand it.
docs/dist/js/bootstrap.js
View file @
51f1f58b
...
...
@@ -4,7 +4,16 @@
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if
(
typeof
jQuery
===
'
undefined
'
)
{
throw
new
Error
(
'
Bootstrap
\'
s JavaScript requires jQuery
'
)
}
if
(
typeof
jQuery
===
'
undefined
'
)
{
throw
new
Error
(
'
Bootstrap
\'
s JavaScript requires jQuery
'
)
}
+
function
(
$
)
{
var
version
=
$
.
fn
.
jquery
.
split
(
'
'
)[
0
].
split
(
'
.
'
)
if
((
version
[
0
]
<
2
&&
version
[
1
]
<
9
)
||
(
version
[
0
]
==
1
&&
version
[
1
]
==
9
&&
version
[
2
]
<
1
))
{
throw
new
Error
(
'
Bootstrap
\'
s JavaScript requires jQuery version 1.9.1 or higher
'
)
}
}(
jQuery
);
/* ========================================================================
* Bootstrap: transition.js v3.2.0
...
...
@@ -772,7 +781,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
if
(
!
$items
.
length
)
return
var
index
=
$items
.
index
(
$items
.
filter
(
'
:focus
'
)
)
var
index
=
$items
.
index
(
e
.
target
)
if
(
e
.
which
==
38
&&
index
>
0
)
index
--
// up
if
(
e
.
which
==
40
&&
index
<
$items
.
length
-
1
)
index
++
// down
...
...
docs/dist/js/bootstrap.min.js
View file @
51f1f58b
This diff is collapsed.
Click to expand it.
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