Your IP : 216.73.216.84


Current Path : /home/helpink/www/media/mod_login/js/
Upload File :
Current File : /home/helpink/www/media/mod_login/js/admin-login.js

/**
 * @copyright  (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

((Joomla, document) => {

  document.addEventListener('DOMContentLoaded', () => {
    const btn = document.getElementById('btn-login-submit');
    if (btn) {
      btn.addEventListener('click', event => {
        event.preventDefault();
        if (document.formvalidator.isValid(btn.form)) {
          Joomla.submitbutton('login');
        }
      });
    }
  });
})(window.Joomla, document);