__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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) 2013 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

/**
 * ajaxChosen javascript behavior
 *
 * Used for displaying tags
 *
 * @package     Joomla.JavaScript
 * @since       1.5
 * @version     1.0
 */
(function($) {
  return $.fn.ajaxChosen = function(settings, callback, chosenOptions) {
    var chosenXhr, defaultOptions, options, select;
    if (settings == null) {
      settings = {};
    }
    if (callback == null) {
      callback = {};
    }
    if (chosenOptions == null) {
      chosenOptions = function() {};
    }
    defaultOptions = {
      minTermLength: 3,
      afterTypeDelay: 500,
      jsonTermKey: "term",
      keepTypingMsg: Joomla.Text._('JGLOBAL_KEEP_TYPING'),
      lookingForMsg: Joomla.Text._('JGLOBAL_LOOKING_FOR')
    };
    select = this;
    chosenXhr = null;
    options = $.extend({}, defaultOptions, $(select).data(), settings);
    this.jchosen(chosenOptions ? chosenOptions : {});
    return this.each(function() {
      return $(this).next('.chosen-container').find(".search-field > input, .chosen-search > input").bind('keyup', function() {
        var field, msg, success, untrimmed_val, val;
        untrimmed_val = $(this).val();
        val = $.trim($(this).val());
        msg = val.length < options.minTermLength ? options.keepTypingMsg : options.lookingForMsg + (" '" + val + "'");
        select.next('.chosen-container').find('.no-results').text(msg);
        if (val === $(this).data('prevVal')) {
          return false;
        }
        $(this).data('prevVal', val);
        if (this.timer) {
          clearTimeout(this.timer);
        }
        if (val.length < options.minTermLength) {
          return false;
        }
        field = $(this);
        if (!(options.data != null)) {
          options.data = {};
        }
        options.data[options.jsonTermKey] = val;
        if (options.dataCallback != null) {
          options.data = options.dataCallback(options.data);
        }
        success = options.success;
        options.success = function(data) {
          var items, nbItems, selected_values;
          if (!(data != null)) {
            return;
          }
          selected_values = [];
          select.find('option').each(function() {
            if (!$(this).is(":selected")) {
              return $(this).remove();
            } else {
              return selected_values.push($(this).val() + "-" + $(this).text());
            }
          });
          select.find('optgroup:empty').each(function() {
            return $(this).remove();
          });
          items = callback.apply(null, data);
          nbItems = 0;
          $.each(items, function(i, element) {
            var group, text, value;
            nbItems++;
            if (element.group) {
              group = select.find("optgroup[label='" + element.text + "']");
              if (!group.size()) {
                group = $("<optgroup />");
              }
              group.attr('label', element.text).appendTo(select);
              return $.each(element.items, function(i, element) {
                var text, value;
                if (typeof element === "string") {
                  value = i;
                  text = element;
                } else {
                  value = element.value;
                  text = element.text;
                }
                if ($.inArray(value + "-" + text, selected_values) === -1) {
                  return $("<option />").attr('value', value).html(text).appendTo(group);
                }
              });
            } else {
              if (typeof element === "string") {
                value = i;
                text = element;
              } else {
                value = element.value;
                text = element.text;
              }
              if ($.inArray(value + "-" + text, selected_values) === -1) {
                return $("<option />").attr('value', value).html(text).appendTo(select);
              }
            }
          });
          if (nbItems) {
            select.trigger("chosen:updated");
          } else {
            select.data().jchosen.no_results_clear();
            select.data().jchosen.no_results(field.val());
          }
          if (success != null) {
            success(data);
          }
          return field.val(untrimmed_val);
        };
        return this.timer = setTimeout(function() {
          if (chosenXhr) {
            chosenXhr.abort();
          }
          return chosenXhr = $.ajax(options);
        }, options.afterTypeDelay);
      });
    });
  };
})(jQuery);

jQuery(document).ready(function ($) {
  if (Joomla.getOptions('ajax-chosen')) {

    var options = Joomla.getOptions('ajax-chosen');

    $(options.selector).ajaxChosen({
      type: options.type,
      url: options.url,
      dataType: options.dataType,
      jsonTermKey: options.jsonTermKey,
      afterTypeDelay: options.afterTypeDelay,
      minTermLength: options.minTermLength
    }, function (data) {
      var results = [];

      $.each(data, function (i, val) {
        results.push({ value: val.value, text: val.text });
      });

      return results;
    });
  }
});

Filemanager

Name Type Size Permission Actions
ajax-chosen.js File 5.13 KB 0664
ajax-chosen.min.js File 2.37 KB 0664
ajax-chosen.min.js.gz File 1.13 KB 0664
joomla-chosen.js File 4.07 KB 0664
joomla-chosen.min.js File 2.08 KB 0664
joomla-chosen.min.js.gz File 845 B 0664
jquery-noconflict.js File 29 B 0664
jquery-noconflict.min.js File 27 B 0664
jquery-noconflict.min.js.gz File 47 B 0664
tabs-state.js File 7.02 KB 0664
tabs-state.min.js File 2.45 KB 0664
tabs-state.min.js.gz File 1.2 KB 0664
toolbar.js File 2.36 KB 0664
toolbar.min.js File 1.09 KB 0664
toolbar.min.js.gz File 584 B 0664
treeselectmenu.js File 4.04 KB 0664
treeselectmenu.min.js File 2.85 KB 0664
treeselectmenu.min.js.gz File 840 B 0664
Filemanager