Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 18.191.60.249
Web Server : Apache/2.4.61 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/2/root/proc/2/cwd/proc/3/root/srv/modoboa/instance/sitestatic/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/2/root/proc/2/cwd/proc/3/root/srv/modoboa/instance/sitestatic/js/autocompleter.js
(function($) {
    "use strict";

    var Autocompleter = function(element, options) {
        this.initialize(element, options);
    };

    Autocompleter.prototype = {
        constructor: Autocompleter,

        initialize: function(element, options) {
            this.$element = $(element);
            this.options = $.extend({}, $.fn.autocompleter.defaults, options);
            if (typeof this.options.choices === "function") {
                this.choices = this.options.choices();
            } else {
                this.choices = this.options.choices;
            }
            this.$menu =
                $('<ul class="dropdown-menu autocompleter" data-toggle="dropdown" />');
            $("body").append(this.$menu);
            this.$menu.on("click", $.proxy(this.select_entry, this));

            this.$element.attr("autocomplete", "off");
            this.listen();
        },

        listen: function() {
            this.$element.keydown($.proxy(this.keydown, this));
            this.$element.keyup($.proxy(this.keyup, this));
            this.$element.blur($.proxy(this.hide_menu, this));
        },

        unbind: function() {
            this.$element.off("keydown keyup blur");
        },

        check_user_input: function() {
            var value = this.$element.val();
            var start = -1;
            var pattern = null;

            if (this.options.from_character) {
                start = value.indexOf(this.options.from_character);
                if (start == -1) {
                    return;
                }
                pattern = value.substr(start + 1);
            } else {
                pattern = value;
            }

            var exp = new RegExp("^" + pattern);

            this.$menu.empty();
            $.each(this.choices, $.proxy(function(index, value) {
                if (exp.test(value)) {
                    this.$menu.append(
                        $('<li><a href="#" name="' + value + '">' + value + '</a></li>')
                    );
                }
            }, this));

            var coords = this.$element.offset();

            this.$menu.css({
                position: "absolute",
                top: coords.top + this.$element.outerHeight(),
                left: coords.left,
                width: this.$element.outerWidth(),
                'z-index': 1051
            });
            if (this.$menu.children().length) {
                this.$menu.children().first().addClass("active");
                this.$menu.show();
            } else {
                this.$menu.hide();
            }
        },

        hide_menu: function() {
            setTimeout($.proxy(function() { this.$menu.hide(); }, this), 150);
        },

        select_entry: function(evt) {
            if (this.$menu.is(":visible")) {
                var $link;
                if (evt !== undefined) {
                    evt.preventDefault();
                    $link = $(evt.target);
                } else {
                    $link = this.$menu.find('.active > a');
                }
                var curvalue = this.$element.val();

                if (curvalue === undefined || curvalue === "") {
                    if (this.options.empty_choice) {
                        this.options.empty_choice();
                    }
                    return;
                }
                if ($link.length) {
                    this.$element.val(curvalue.substr(
                        0, curvalue.indexOf(this.options.from_character) + 1
                    ) + $link.attr("name"));
                    this.$element.change();
                }
                this.hide_menu();
            }
            if (this.options.choice_selected) {
                this.options.choice_selected(this.$element.val());
            }
        },

        activate_next: function() {
            var active = this.$menu.find('.active').removeClass('active'),
                next = active.next();

            if (!next.length) {
                next = $(this.$menu.find('li').first());
            }
            next.addClass('active');
        },

        activate_prev: function() {
            var active = this.$menu.find('.active').removeClass('active'),
                prev = active.prev();

            if (!prev.length) {
                prev = this.$menu.find('li').last();
            }

            prev.addClass('active');
        },

        keydown: function(evt) {
            evt.stopPropagation();

            switch (evt.which) {
                case 13:
                case 27:
                    evt.preventDefault();
                    break;
                case 38:
                    evt.preventDefault();
                    this.activate_prev();
                    break;
                case 40:
                    evt.preventDefault();
                    this.activate_next();
                    break;
            }
        },

        keyup: function(evt) {
            evt.stopPropagation();
            evt.preventDefault();

            switch (evt.which) {
            case 40:
            case 38:
                break;

            case 13:
                this.select_entry();
                break;

            case 27:
                this.hide_menu();
                break;

            default:
                this.check_user_input();
            }
        }
    };

    $.fn.autocompleter = function(option) {
        return this.each(function() {
            var $this = $(this),
                data = $this.data('autocompleter'),
                options = typeof option === "object" && option;

            if (!data) {
                $this.data('autocompleter', new Autocompleter(this, options));
            }
            if (typeof option === "string") {
                data[option]();
            }
        });
    };

    $.fn.autocompleter.defaults = {
        'choice_selected' : null,
        'empty_choice' : null
    };

})(jQuery);

Anon7 - 2022
AnonSec Team