Skip to content

Commit

Permalink
Remove fade classes from HTML fixture to ease testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
blueimp committed Feb 13, 2012
1 parent 5e30591 commit 180ee2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/index.html
Expand Up @@ -47,7 +47,7 @@ <h2 id="qunit-userAgent"></h2>
</div>
<div class="span5">
<!-- The global progress bar -->
<div class="progress progress-success progress-striped active fade">
<div class="progress progress-success progress-striped active">
<div class="bar" style="width:0%;"></div>
</div>
</div>
Expand All @@ -73,8 +73,8 @@ <h2 id="qunit-userAgent"></h2>
<!-- The template to display files available for upload -->
<script id="template-upload" type="text/html">
{% for (var i=0, files=o.files, l=files.length, file=files[0]; i<l; file=files[++i]) { %}
<tr class="template-upload fade">
<td class="preview"><span class="fade"></span></td>
<tr class="template-upload">
<td class="preview"><span class=""></span></td>
<td class="name">{%=file.name%}</td>
<td class="size">{%=o.formatFileSize(file.size)%}</td>
{% if (file.error) { %}
Expand Down Expand Up @@ -102,7 +102,7 @@ <h2 id="qunit-userAgent"></h2>
<!-- The template to display files available for download -->
<script id="template-download" type="text/html">
{% for (var i=0, files=o.files, l=files.length, file=files[0]; i<l; file=files[++i]) { %}
<tr class="template-download fade">
<tr class="template-download">
{% if (file.error) { %}
<td></td>
<td class="name">{%=file.name%}</td>
Expand Down

0 comments on commit 180ee2b

Please sign in to comment.