mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
Fixed progress bar classes
This commit is contained in:
parent
bbc5bcc7e9
commit
43f26ac999
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ $(document).ready(function () {
|
|||
|
||||
function upload(file) {
|
||||
var li = $('<li style="clear:both;"/>');
|
||||
li.append($('<div><div class="progress active upload-progress" style="margin-bottom: 0;"><div class="progress-bar" style="width: 0%;"></div></div><p>Uploading... ' + file.name + '</p></div>'));
|
||||
li.append($('<div><div class="progress active upload-progress" style="margin-bottom: 0;"><div class="progress-bar bar" style="width: 0%;"></div></div><p>Uploading... ' + file.name + '</p></div>'));
|
||||
$(li).appendTo($('.queue'));
|
||||
|
||||
var xhr = new XMLHttpRequest();
|
||||
|
|
Loading…
Reference in a new issue