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
f8cee54f
Commit
f8cee54f
authored
Dec 15, 2013
by
Chris Rebert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use unique IDs for modal labels in doc examples so HTML validates
parent
4db1d69e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
javascript.html
javascript.html
+6
-6
No files found.
javascript.html
View file @
f8cee54f
...
@@ -245,7 +245,7 @@ $('#myModal').on('show.bs.modal', function (e) {
...
@@ -245,7 +245,7 @@ $('#myModal').on('show.bs.modal', function (e) {
<!-- Large modal -->
<!-- Large modal -->
<button
class=
"btn btn-primary"
data-toggle=
"modal"
data-target=
".bs-modal-lg"
>
Large modal
</button>
<button
class=
"btn btn-primary"
data-toggle=
"modal"
data-target=
".bs-modal-lg"
>
Large modal
</button>
<div
class=
"modal fade bs-modal-lg"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal fade bs-modal-lg"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"my
Large
ModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-lg"
>
<div
class=
"modal-dialog modal-lg"
>
<div
class=
"modal-content"
>
<div
class=
"modal-content"
>
...
...
...
@@ -256,7 +256,7 @@ $('#myModal').on('show.bs.modal', function (e) {
...
@@ -256,7 +256,7 @@ $('#myModal').on('show.bs.modal', function (e) {
<!-- Small modal -->
<!-- Small modal -->
<button
class=
"btn btn-primary"
data-toggle=
"modal"
data-target=
".bs-modal-sm"
>
Small modal
</button>
<button
class=
"btn btn-primary"
data-toggle=
"modal"
data-target=
".bs-modal-sm"
>
Small modal
</button>
<div
class=
"modal fade bs-modal-sm"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal fade bs-modal-sm"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"my
Small
ModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-sm"
>
<div
class=
"modal-dialog modal-sm"
>
<div
class=
"modal-content"
>
<div
class=
"modal-content"
>
...
...
...
@@ -266,13 +266,13 @@ $('#myModal').on('show.bs.modal', function (e) {
...
@@ -266,13 +266,13 @@ $('#myModal').on('show.bs.modal', function (e) {
{% endhighlight %}
{% endhighlight %}
<!-- Modal content for the above example -->
<!-- Modal content for the above example -->
<div
class=
"modal fade bs-modal-lg"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal fade bs-modal-lg"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"my
Large
ModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-lg"
>
<div
class=
"modal-dialog modal-lg"
>
<div
class=
"modal-content"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h4
class=
"modal-title"
id=
"myModalLabel"
>
Large modal
</h4>
<h4
class=
"modal-title"
id=
"my
Large
ModalLabel"
>
Large modal
</h4>
</div>
</div>
<div
class=
"modal-body"
>
<div
class=
"modal-body"
>
...
...
...
@@ -280,13 +280,13 @@ $('#myModal').on('show.bs.modal', function (e) {
...
@@ -280,13 +280,13 @@ $('#myModal').on('show.bs.modal', function (e) {
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
<!-- /.modal -->
<div
class=
"modal fade bs-modal-sm"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal fade bs-modal-sm"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"my
Small
ModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-sm"
>
<div
class=
"modal-dialog modal-sm"
>
<div
class=
"modal-content"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h4
class=
"modal-title"
id=
"myModalLabel"
>
Small modal
</h4>
<h4
class=
"modal-title"
id=
"my
Small
ModalLabel"
>
Small modal
</h4>
</div>
</div>
<div
class=
"modal-body"
>
<div
class=
"modal-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