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
acd19de6
Commit
acd19de6
authored
6 years ago
by
XhmikosR
Browse files
Options
Download
Email Patches
Plain Diff
Use ES6 arrow function.
parent
8bb35313
2 merge requests
!28721
Hot test
,
!27561
Adds font-weight-medium to font weight classes
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
js/src/alert.js
+1
-1
js/src/alert.js
js/src/button.js
+1
-1
js/src/button.js
js/src/carousel.js
+1
-1
js/src/carousel.js
js/src/collapse.js
+1
-1
js/src/collapse.js
js/src/dropdown.js
+1
-1
js/src/dropdown.js
js/src/modal.js
+1
-1
js/src/modal.js
js/src/popover.js
+1
-1
js/src/popover.js
js/src/scrollspy.js
+1
-1
js/src/scrollspy.js
js/src/tab.js
+1
-1
js/src/tab.js
js/src/tooltip.js
+1
-1
js/src/tooltip.js
with
10 additions
and
10 deletions
+10
-10
js/src/alert.js
+
1
-
1
View file @
acd19de6
...
...
@@ -172,7 +172,7 @@ const Alert = (($) => {
$
.
fn
[
NAME
]
=
Alert
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Alert
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Alert
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/button.js
+
1
-
1
View file @
acd19de6
...
...
@@ -164,7 +164,7 @@ const Button = (($) => {
$
.
fn
[
NAME
]
=
Button
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Button
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Button
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/carousel.js
+
1
-
1
View file @
acd19de6
...
...
@@ -509,7 +509,7 @@ const Carousel = (($) => {
$
.
fn
[
NAME
]
=
Carousel
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Carousel
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Carousel
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/collapse.js
+
1
-
1
View file @
acd19de6
...
...
@@ -387,7 +387,7 @@ const Collapse = (($) => {
$
.
fn
[
NAME
]
=
Collapse
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Collapse
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Collapse
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/dropdown.js
+
1
-
1
View file @
acd19de6
...
...
@@ -483,7 +483,7 @@ const Dropdown = (($) => {
$
.
fn
[
NAME
]
=
Dropdown
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Dropdown
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Dropdown
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/modal.js
+
1
-
1
View file @
acd19de6
...
...
@@ -568,7 +568,7 @@ const Modal = (($) => {
$
.
fn
[
NAME
]
=
Modal
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Modal
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Modal
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/popover.js
+
1
-
1
View file @
acd19de6
...
...
@@ -177,7 +177,7 @@ const Popover = (($) => {
$
.
fn
[
NAME
]
=
Popover
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Popover
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Popover
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/scrollspy.js
+
1
-
1
View file @
acd19de6
...
...
@@ -321,7 +321,7 @@ const ScrollSpy = (($) => {
$
.
fn
[
NAME
]
=
ScrollSpy
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
ScrollSpy
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
ScrollSpy
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/tab.js
+
1
-
1
View file @
acd19de6
...
...
@@ -253,7 +253,7 @@ const Tab = (($) => {
$
.
fn
[
NAME
]
=
Tab
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Tab
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Tab
.
_jQueryInterface
}
...
...
This diff is collapsed.
Click to expand it.
js/src/tooltip.js
+
1
-
1
View file @
acd19de6
...
...
@@ -714,7 +714,7 @@ const Tooltip = (($) => {
$
.
fn
[
NAME
]
=
Tooltip
.
_jQueryInterface
$
.
fn
[
NAME
].
Constructor
=
Tooltip
$
.
fn
[
NAME
].
noConflict
=
function
()
{
$
.
fn
[
NAME
].
noConflict
=
()
=>
{
$
.
fn
[
NAME
]
=
JQUERY_NO_CONFLICT
return
Tooltip
.
_jQueryInterface
}
...
...
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