Commit d672ac13 authored by Kevin Gutierrez's avatar Kevin Gutierrez
Browse files

Use spaces

parent 4e3eb54b
......@@ -39,7 +39,11 @@ $(function() {
});
}).done(function() {
data.context.find('.start').prop('disabled', false);
if (that._trigger('added', e, data) !== false && (options.autoUpload || data.autoUpload) && data.autoUpload !== false) {
if (
that._trigger('added', e, data) !== false &&
(options.autoUpload || data.autoUpload) &&
data.autoUpload !== false
) {
data.submit();
}
}).fail(function() {
......@@ -64,7 +68,7 @@ $(function() {
return false;
}
var progress = Math.floor((data.loaded / data.total) * 100);
var progress = Math.floor(data.loaded / data.total * 100);
data.context.each(function() {
$(this)
.find('.progress')
......@@ -77,7 +81,7 @@ $(function() {
},
progressall: function(e, data) {
var progress = parseInt((data.loaded / data.total) * 100, 10);
var progress = parseInt(data.loaded / data.total * 100, 10);
$('#overall-progress')
.addClass('active')
.attr('aria-valuenow', progress)
......
......@@ -21,7 +21,6 @@
{% endif %}
</div>
<script>
var thumb = $("[data-video-thumb=\"" + {{ video.id }} + "\"]");
$("[data-thumb-target=\"" + {{ video.id }} + "\"]").append(thumb);
</script>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment