Вход Регистрация
Файл: js/xenforo/full/event_listener.js
Строк: 58
<?php
/** @param {jQuery} $ jQuery Object */
!function($, windowdocument_undefined)
{

    
XenForo.EventListenerOption = function($element) { this.__construct($element); };
    
XenForo.EventListenerOption.prototype =
    {
        
__construct: function($select)
        {
            
this.$select $select;
            
this.url $select.data('descurl');
            
this.$target = $($select.data('desctarget'));
            if (!
this.url || !this.$target.length)
            {
                return;
            }

            
$select.bind(
            {
                
keyup: $.context(this'fetchDescriptionDelayed'),
                
change: $.context(this'fetchDescription')
            });
            if (
$select.val().length)
            {
                
this.fetchDescription();
            }
        },

        
fetchDescriptionDelayed: function()
        {
            if (
this.delayTimer)
            {
                
clearTimeout(this.delayTimer);
            }

            
this.delayTimer setTimeout($.context(this'fetchDescription'), 250);
        },

        
fetchDescription: function()
        {
            if (!
this.$select.val().length)
            {
                
this.$target.html('');
                return;
            }

            if (
this.xhr)
            {
                
this.xhr.abort();
            }

            
this.xhr XenForo.ajax(
                
this.url,
                { 
event_idthis.$select.val() },
                $.
context(this'ajaxSuccess'),
                { 
errorfalse }
            );
        },

        
ajaxSuccess: function(ajaxData)
        {
            if (
ajaxData)
            {
                
this.$target.html(ajaxData.description);
            }
            else
            {
                
this.$target.html('');
            }
        }
    };

    
XenForo.register('select.EventListenerOption''XenForo.EventListenerOption');

}
(
jQuerythisdocument);
?>
Онлайн: 1
Реклама