/** * @package Joomla.CMS * @maintainer Llewellyn van der Merwe * * @created 29th July, 2020 * @copyright (C) 2020 Open Source Matters, Inc. * @license GNU General Public License version 2 or later; see LICENSE.txt */ Joomla.submitbutton = function(task) { if (task == ''){ return false; } else { var action = task.split('.'); if (action[1] == 'cancel' || action[1] == 'close' || document.formvalidator.isValid(document.getElementById("adminForm"))){ Joomla.submitform(task, document.getElementById("adminForm")); return true; } else { alert(Joomla.JText._('joomla_version, some values are not acceptable.','Some values are unacceptable')); return false; } } }