aboutsummaryrefslogtreecommitdiff
path: root/components.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-19 00:39:00 -0700
committerMark Otto <[email protected]>2013-08-19 00:39:00 -0700
commit38009ec8efa06c58fb21feed6ffc40e852cf38d5 (patch)
tree7d1cf0b21413a16d75020f93d7fc7ba01ed6822b /components.html
parent17c1388f230d01a88b29f18a209094cffbe2a2d3 (diff)
downloadbootstrap-38009ec8efa06c58fb21feed6ffc40e852cf38d5.tar.xz
bootstrap-38009ec8efa06c58fb21feed6ffc40e852cf38d5.zip
Double quotes not single quotes
Diffstat (limited to 'components.html')
-rw-r--r--components.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/components.html b/components.html
index 65cfb2739..b5fe95fd6 100644
--- a/components.html
+++ b/components.html
@@ -2359,7 +2359,7 @@ body { padding-bottom: 70px; }
{% highlight html %}
<div class="progress progress-striped active">
<div class="progress-bar" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
- <span class='sr-only'>45% Complete</span>
+ <span class="sr-only">45% Complete</span>
</div>
</div>
{% endhighlight %}
@@ -2370,7 +2370,7 @@ body { padding-bottom: 70px; }
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 35%"><span class="sr-only">35% Complete (success)</span></div>
<div class="progress-bar progress-bar-warning" style="width: 20%"><span class="sr-only">20% Complete (warning)</span></div>
- <div class="progress-bar progress-bar-danger" style="width: 10%"><span class='sr-only'>10% Complete (danger)</span></div>
+ <div class="progress-bar progress-bar-danger" style="width: 10%"><span class="sr-only">10% Complete (danger)</span></div>
</div>
</div>
{% highlight html %}