Sfoglia il codice sorgente

Fixed progress bar classes

tags/v1.0.0
Uvis Grinfelds 9 anni fa
parent
commit
43f26ac999
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      transfersh-web/scripts/main.js

+ 1
- 1
transfersh-web/scripts/main.js Vedi File

@@ -35,7 +35,7 @@ $(document).ready(function () {


function upload(file) { function upload(file) {
var li = $('<li style="clear:both;"/>'); 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')); $(li).appendTo($('.queue'));


var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();


Caricamento…
Annulla
Salva