[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
media
/
plg_installer_folderinstaller
/
js
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 folderinstaller-es5.js
925 B
SET
[ EDIT ]
|
[ DEL ]
📄 folderinstaller-es5.min.js
613 B
SET
[ EDIT ]
|
[ DEL ]
📄 folderinstaller-es5.min.js.gz
426 B
SET
[ EDIT ]
|
[ DEL ]
📄 folderinstaller.js
821 B
SET
[ EDIT ]
|
[ DEL ]
📄 folderinstaller.min.js
570 B
SET
[ EDIT ]
|
[ DEL ]
📄 folderinstaller.min.js.gz
409 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: folderinstaller.js
/** * @copyright (C) 2020 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ Joomla = window.Joomla || {}; (Joomla => { document.addEventListener('DOMContentLoaded', () => { Joomla.submitbuttonfolder = () => { const form = document.getElementById('adminForm'); // do field validation if (form.install_directory.value === '') { Joomla.renderMessages({ warning: [Joomla.Text._('PLG_INSTALLER_FOLDERINSTALLER_NO_INSTALL_PATH')] }); } else { const loading = document.getElementById('loading'); if (loading) { loading.classList.remove('hidden'); } form.installtype.value = 'folder'; form.submit(); } }; }); })(Joomla);