mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
Hide unhelpful messages in file upload box in mobile #928
This commit is contained in:
parent
d47aea0aba
commit
fcd8c2f211
2 changed files with 10 additions and 2 deletions
|
|
@ -360,6 +360,11 @@
|
|||
$container.find('.allowed_attach_size').text(res.allowed_attach_size);
|
||||
$container.find('.attached_size').text(res.attached_size);
|
||||
$container.find('.file_count').text(res.files.length);
|
||||
if(res.allowed_filetypes === '*.*') {
|
||||
$container.find('.allowed_filetypes_container').hide();
|
||||
} else {
|
||||
$container.find('.allowed_filetypes_container').show();
|
||||
}
|
||||
|
||||
var tmpl_fileitem = data.settings.tmplXeUploaderFileitem;
|
||||
var tmpl_fileitem_image = data.settings.tmplXeUploaderFileitemImage;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue