From 082a6b29a96ad57ec53e72c9c2b57d919d457d49 Mon Sep 17 00:00:00 2001 From: PayBas Date: Mon, 2 Jun 2014 12:42:45 +0200 Subject: [ticket/12541] Activate attachments tab when files are dropped into textarea PHPBB3-12541 --- phpBB/assets/javascript/plupload.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'phpBB/assets/javascript/plupload.js') diff --git a/phpBB/assets/javascript/plupload.js b/phpBB/assets/javascript/plupload.js index 8ffd452a09..5445e83e15 100644 --- a/phpBB/assets/javascript/plupload.js +++ b/phpBB/assets/javascript/plupload.js @@ -586,6 +586,11 @@ uploader.bind('FilesAdded', function(up, files) { return; } + // Switch the active tab if the style supports it + if (typeof activateSubPanel == 'function') { + activateSubPanel('attach-panel'); + } + // Show the file list if there aren't any files currently. if (!$('#file-list-container').is(':visible')) { $('#file-list-container').show(100); -- cgit v1.2.1