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
f1b0cd49
Commit
f1b0cd49
authored
Nov 05, 2013
by
Chris Rebert
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10039 from daguej/js-refs
Don't explicitly reference global jQuery
parents
d2e710a2
f140084f
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
12 deletions
+12
-12
js/affix.js
js/affix.js
+1
-1
js/alert.js
js/alert.js
+1
-1
js/button.js
js/button.js
+1
-1
js/carousel.js
js/carousel.js
+1
-1
js/collapse.js
js/collapse.js
+1
-1
js/dropdown.js
js/dropdown.js
+1
-1
js/modal.js
js/modal.js
+1
-1
js/popover.js
js/popover.js
+1
-1
js/scrollspy.js
js/scrollspy.js
+1
-1
js/tab.js
js/tab.js
+1
-1
js/tooltip.js
js/tooltip.js
+1
-1
js/transition.js
js/transition.js
+1
-1
No files found.
js/affix.js
View file @
f1b0cd49
...
...
@@ -123,4 +123,4 @@
})
})
}(
window
.
jQuery
);
}(
jQuery
);
js/alert.js
View file @
f1b0cd49
...
...
@@ -95,4 +95,4 @@
$
(
document
).
on
(
'
click.bs.alert.data-api
'
,
dismiss
,
Alert
.
prototype
.
close
)
}(
window
.
jQuery
);
}(
jQuery
);
js/button.js
View file @
f1b0cd49
...
...
@@ -106,4 +106,4 @@
e
.
preventDefault
()
})
}(
window
.
jQuery
);
}(
jQuery
);
js/carousel.js
View file @
f1b0cd49
...
...
@@ -214,4 +214,4 @@
})
})
}(
window
.
jQuery
);
}(
jQuery
);
js/collapse.js
View file @
f1b0cd49
...
...
@@ -176,4 +176,4 @@
$target
.
collapse
(
option
)
})
}(
window
.
jQuery
);
}(
jQuery
);
js/dropdown.js
View file @
f1b0cd49
...
...
@@ -151,4 +151,4 @@
.
on
(
'
click.bs.dropdown.data-api
'
,
toggle
,
Dropdown
.
prototype
.
toggle
)
.
on
(
'
keydown.bs.dropdown.data-api
'
,
toggle
+
'
, [role=menu]
'
,
Dropdown
.
prototype
.
keydown
)
}(
window
.
jQuery
);
}(
jQuery
);
js/modal.js
View file @
f1b0cd49
...
...
@@ -243,4 +243,4 @@
.
on
(
'
show.bs.modal
'
,
'
.modal
'
,
function
()
{
$
(
document
.
body
).
addClass
(
'
modal-open
'
)
})
.
on
(
'
hidden.bs.modal
'
,
'
.modal
'
,
function
()
{
$
(
document
.
body
).
removeClass
(
'
modal-open
'
)
})
}(
window
.
jQuery
);
}(
jQuery
);
js/popover.js
View file @
f1b0cd49
...
...
@@ -114,4 +114,4 @@
return
this
}
}(
window
.
jQuery
);
}(
jQuery
);
js/scrollspy.js
View file @
f1b0cd49
...
...
@@ -155,4 +155,4 @@
})
})
}(
window
.
jQuery
);
}(
jQuery
);
js/tab.js
View file @
f1b0cd49
...
...
@@ -132,4 +132,4 @@
$
(
this
).
tab
(
'
show
'
)
})
}(
window
.
jQuery
);
}(
jQuery
);
js/tooltip.js
View file @
f1b0cd49
...
...
@@ -383,4 +383,4 @@
return
this
}
}(
window
.
jQuery
);
}(
jQuery
);
js/transition.js
View file @
f1b0cd49
...
...
@@ -53,4 +53,4 @@
$
.
support
.
transition
=
transitionEnd
()
})
}(
window
.
jQuery
);
}(
jQuery
);
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