Merge pull request #5655 from marc1706/ticket/16093

[ticket/16093] Ensure attach row is visible after upload with javascript
This commit is contained in:
Marc Alexander 2019-08-13 18:34:06 +02:00
commit b563b7d26f
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -21,7 +21,9 @@ phpbb.plupload.initialize = function() {
// Only execute if Plupload initialized successfully.
phpbb.plupload.uploader.bind('Init', function() {
phpbb.plupload.form = $(phpbb.plupload.config.form_hook)[0];
phpbb.plupload.rowTpl = $('#attach-row-tpl')[0].outerHTML;
let $attachRowTemplate = $('#attach-row-tpl');
$attachRowTemplate.removeClass('attach-row-tpl');
phpbb.plupload.rowTpl = $attachRowTemplate[0].outerHTML;
// Hide the basic upload panel and remove the attach row template.
$('#attach-row-tpl, #attach-panel-basic').remove();