PHP 8.1.33
Preview: admin-banner-edit.js Size: 1.04 KB
/home/jambtst2015/9jahookups.com/media/com_banners/js/admin-banner-edit.js

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

  const updateBannerFields = value => {
    const imgWrapper = document.getElementById('image');
    const custom = document.getElementById('custom');

    switch (value) {
      case '0':
        // Image
        imgWrapper.classList.remove('hidden');
        custom.classList.add('hidden');
        break;

      case '1':
        // Custom
        imgWrapper.classList.add('hidden');
        custom.classList.remove('hidden');
        break;

    }
  };

  document.addEventListener('DOMContentLoaded', () => {
    const jformType = document.getElementById('jform_type');

    if (jformType) {
      // Hide/show parameters initially
      updateBannerFields(jformType.value); // Hide/show parameters when the type has been selected

      jformType.addEventListener('change', ({
        target
      }) => {
        updateBannerFields(target.value);
      });
    }
  });
})(document);

Directory Contents

Dirs: 0 × Files: 6

Name Size Perms Modified Actions
1.19 KB lrw-r--r-- 2021-08-23 19:08:29
Edit Download
451 B lrw-r--r-- 2021-08-23 19:08:35
Edit Download
249 B lrw-r--r-- 2021-08-23 19:09:07
Edit Download
1.04 KB lrw-r--r-- 2021-08-23 19:08:11
Edit Download
396 B lrw-r--r-- 2021-08-23 19:08:35
Edit Download
233 B lrw-r--r-- 2021-08-23 19:09:07
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).