mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-03 19:47:25 +01:00
Displays correct file extension for videos
This commit is contained in:
parent
1e15133b9b
commit
459addfb6a
@ -208,6 +208,7 @@ onready(function(){
|
|||||||
|
|
||||||
$.each(file_array, function () {
|
$.each(file_array, function () {
|
||||||
var thumb_url;
|
var thumb_url;
|
||||||
|
var file_ext = this.ext;
|
||||||
|
|
||||||
if (this.isImage && !this.isSpoiler) {
|
if (this.isImage && !this.isSpoiler) {
|
||||||
// video files uses jpg for thumbnail
|
// video files uses jpg for thumbnail
|
||||||
@ -220,7 +221,7 @@ onready(function(){
|
|||||||
var $ele = $('<div class="file">')
|
var $ele = $('<div class="file">')
|
||||||
.append($('<p class="fileinfo">')
|
.append($('<p class="fileinfo">')
|
||||||
.append('<span>File: </span>')
|
.append('<span>File: </span>')
|
||||||
.append('<a>'+ this.filename + this.ext +'</a>')
|
.append('<a>'+ this.filename + file_ext +'</a>')
|
||||||
.append('<span class="unimportant"> ('+ bytesToSize(this.fsize) +', '+ this.w +'x'+ this.h +')</span>')
|
.append('<span class="unimportant"> ('+ bytesToSize(this.fsize) +', '+ this.w +'x'+ this.h +')</span>')
|
||||||
);
|
);
|
||||||
if (multifile) $ele.addClass('multifile').css('max-width', '200px');
|
if (multifile) $ele.addClass('multifile').css('max-width', '200px');
|
||||||
|
Loading…
Reference in New Issue
Block a user