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
819e920d
Commit
819e920d
authored
Nov 30, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:twbs/bootstrap
parents
a7a9dcae
95487f75
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
CONTRIBUTING.md
CONTRIBUTING.md
+1
-1
_includes/footer.html
_includes/footer.html
+16
-2
examples/offcanvas/offcanvas.css
examples/offcanvas/offcanvas.css
+2
-1
No files found.
CONTRIBUTING.md
View file @
819e920d
...
@@ -17,7 +17,7 @@ We only accept issues that are bug reports or feature requests. Bugs must be iso
...
@@ -17,7 +17,7 @@ We only accept issues that are bug reports or feature requests. Bugs must be iso
## Pull requests
## Pull requests
-
CSS changes must be done in
`.less`
files first, never just the compiled
`.css`
files
-
CSS changes must be done in
`.less`
files first, never just
in
the compiled
`.css`
files
-
If modifying the
`.less`
files, always recompile and commit the compiled files
`bootstrap.css`
and
`bootstrap.min.css`
-
If modifying the
`.less`
files, always recompile and commit the compiled files
`bootstrap.css`
and
`bootstrap.min.css`
-
Try not to pollute your pull request with unintended changes--keep them simple and small
-
Try not to pollute your pull request with unintended changes--keep them simple and small
-
Try to share which browsers your code has been tested in before submitting a pull request
-
Try to share which browsers your code has been tested in before submitting a pull request
...
...
_includes/footer.html
View file @
819e920d
<!-- Bootstrap core JavaScript
<!-- Bootstrap core JavaScript
================================================== -->
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Placed at the end of the document so the pages load faster -->
<script
src=
"https://
code.jquery.com/jquery-1.10.2
.min.js"
></script>
<script
src=
"https://
ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery
.min.js"
></script>
<script
src=
"{{ page.base_url }}dist/js/bootstrap.js"
></script>
<script
src=
"{{ page.base_url }}dist/js/bootstrap.js"
></script>
<script
src=
"http://platform.twitter.com/widgets.js"
></script>
<script
src=
"{{ page.base_url }}docs-assets/js/holder.js"
></script>
<script
src=
"{{ page.base_url }}docs-assets/js/holder.js"
></script>
<script
src=
"{{ page.base_url }}docs-assets/js/application.js"
></script>
<script
src=
"{{ page.base_url }}docs-assets/js/application.js"
></script>
...
@@ -18,6 +17,21 @@
...
@@ -18,6 +17,21 @@
<script
src=
"{{ page.base_url }}docs-assets/js/customizer.js"
></script>
<script
src=
"{{ page.base_url }}docs-assets/js/customizer.js"
></script>
{% endif %}
{% endif %}
{% comment %}
Inject Twitter widgets asynchronously. Snippet snipped from Twitter's
JS interface site: https://dev.twitter.com/docs/tfw-javascript
* "js.async=1;" added to add async attribute to the generated script tag.
{% endcomment %}
<script>
window
.
twttr
=
(
function
(
d
,
s
,
id
)
{
var
t
,
js
,
fjs
=
d
.
getElementsByTagName
(
s
)[
0
];
if
(
d
.
getElementById
(
id
))
return
;
js
=
d
.
createElement
(
s
);
js
.
id
=
id
;
js
.
async
=
1
;
js
.
src
=
"
https://platform.twitter.com/widgets.js
"
;
fjs
.
parentNode
.
insertBefore
(
js
,
fjs
);
return
window
.
twttr
||
(
t
=
{
_e
:
[],
ready
:
function
(
f
){
t
.
_e
.
push
(
f
)
}
});
}(
document
,
"
script
"
,
"
twitter-wjs
"
));
</script>
<!-- Analytics
<!-- Analytics
================================================== -->
================================================== -->
<script>
<script>
...
...
examples/offcanvas/offcanvas.css
View file @
819e920d
...
@@ -2,7 +2,8 @@
...
@@ -2,7 +2,8 @@
* Style tweaks
* Style tweaks
* --------------------------------------------------
* --------------------------------------------------
*/
*/
html
{
html
,
body
{
overflow-x
:
hidden
;
/* Prevent scroll on narrow devices */
overflow-x
:
hidden
;
/* Prevent scroll on narrow devices */
}
}
body
{
body
{
...
...
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