summaryrefslogtreecommitdiff
path: root/www/js/jingles.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/jingles.js')
-rw-r--r--www/js/jingles.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/jingles.js b/www/js/jingles.js
index e2de6da..04736e4 100644
--- a/www/js/jingles.js
+++ b/www/js/jingles.js
@@ -133,11 +133,11 @@ Rivendell.JingleGroupView.prototype.uploadProgress = function(file) {
var bytes_str = Number((file.upload.bytesSent/1024)/1024).toFixed(1) + " von " +
Number((file.upload.total/1024)/1024).toFixed(1) + " MB";
$cut.find('.file-bytes').text(bytes_str);
- $cut.find('.progress .bar').css("width", file.upload.progress + "%");
+ $cut.find('.progress .progress-bar').css("width", file.upload.progress + "%");
} else {
$cut.find('.file-bytes').text('importiere...');
- $cut.find('.progress .bar').css('width', '100%');
- $cut.find('.progress').addClass('progress-striped').addClass('active');
+ $cut.find('.progress .progress-bar').css('width', '100%');
+ $cut.find('.progress .progress-bar').addClass('progress-bar-striped').addClass('active');
}
};