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

Use spaces

parent 4e3eb54b
.transcode-error {
color: red;
color: red;
}
.processing {
opacity: 0.8;
font-weight: bold;
opacity: 0.8;
font-weight: bold;
}
......@@ -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)
......
......@@ -8,4 +8,4 @@
<span>{{ total }}</span> Videos <span class="visuallyhidden">created in {{ site_name }}</span>
{% endblocktrans %}
</a>
</li>
\ No newline at end of file
</li>
......@@ -3,7 +3,7 @@
{% block titletag %}{% trans "Add multiple videos" %}{% endblock %}
{% block extra_css %}
{{ block.super }}
<!-- it's cheating but we're just going to use wagtailimages css since they should look identical anyways -->
<!-- it's cheating but we're just going to use wagtailimages css since they should look identical anyways -->
<link rel="stylesheet" href="{% static 'wagtailimages/css/add-multiple.css' %}" type="text/css" />
{% endblock %}
......
......@@ -17,11 +17,10 @@
</form>
<div data-video-thumb="{{ video.id }}" class="thumb icon icon-media hasthumb">
{% if video.thumbnail %}
<img src="{{ video.thumbnail.url }}" alt="{% trans 'Video thumbnail' %}" />
<img src="{{ video.thumbnail.url }}" alt="{% trans 'Video thumbnail' %}" />
{% endif %}
</div>
<script>
var thumb = $("[data-video-thumb=\"" + {{ video.id }} + "\"]");
$("[data-thumb-target=\"" + {{ video.id }} + "\"]").append(thumb);
var thumb = $("[data-video-thumb=\"" + {{ video.id }} + "\"]");
$("[data-thumb-target=\"" + {{ video.id }} + "\"]").append(thumb);
</script>
......@@ -21,7 +21,7 @@
<a class="image-choice" href="{% url 'wagtailvideos:edit' video.id %}">
<div class="image">
{% if video.thumbnail %}
<img src="{{video.thumbnail.url}}" height="165" width="165" class="show-transparency" alt="{% trans 'Video thumbnail' %}"/>
<img src="{{video.thumbnail.url}}" height="165" width="165" class="show-transparency" alt="{% trans 'Video thumbnail' %}"/>
{% endif %}
</div>
<h3>{{ video.title|ellipsistrim:60 }}</h3>
......
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