%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/webcreate/jquery-ias/src/extension/ |
Upload File : |
/**
* IAS Trigger Extension
* An IAS extension to show a trigger link to load the next page
* https://infiniteajaxscroll.com
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014-2018 Webcreate (Jeroen Fiege)
*/
var IASTriggerExtension = function(options) {
options = jQuery.extend({}, this.defaults, options);
this.ias = null;
this.html = (options.html).replace('{text}', options.text);
this.htmlPrev = (options.htmlPrev).replace('{text}', options.textPrev);
this.enabled = true;
this.count = 0;
this.offset = options.offset;
this.$triggerNext = null;
this.$triggerPrev = null;
/**
* Shows trigger for next page
*/
this.showTriggerNext = function() {
if (!this.enabled) {
return true;
}
if (false === this.offset || ++this.count < this.offset) {
return true;
}
var $trigger = this.$triggerNext || (this.$triggerNext = this.createTrigger(this.next, this.html));
var $lastItem = this.ias.getLastItem();
$lastItem.after($trigger);
$trigger.fadeIn();
return false;
};
/**
* Shows trigger for previous page
*/
this.showTriggerPrev = function() {
if (!this.enabled) {
return true;
}
var $trigger = this.$triggerPrev || (this.$triggerPrev = this.createTrigger(this.prev, this.htmlPrev));
var $firstItem = this.ias.getFirstItem();
$firstItem.before($trigger);
$trigger.fadeIn();
return false;
};
this.onRendered = function() {
this.enabled = true;
};
/**
* @param clickCallback
* @returns {*|jQuery}
* @param {string} html
*/
this.createTrigger = function(clickCallback, html) {
var uid = (new Date()).getTime(),
$trigger;
html = html || this.html;
$trigger = jQuery(html).attr('id', 'ias_trigger_' + uid);
$trigger.hide();
$trigger.on('click', jQuery.proxy(clickCallback, this));
return $trigger;
};
return this;
};
/**
* @public
* @param {object} ias
*/
IASTriggerExtension.prototype.bind = function(ias) {
var self = this;
this.ias = ias;
ias.on('next', jQuery.proxy(this.showTriggerNext, this), this.priority);
ias.on('rendered', jQuery.proxy(this.onRendered, this), this.priority);
try {
ias.on('prev', jQuery.proxy(this.showTriggerPrev, this), this.priority);
} catch (exception) {}
};
/**
* @public
* @param {object} ias
*/
IASTriggerExtension.prototype.unbind = function(ias) {
ias.off('next', this.showTriggerNext);
ias.off('rendered', this.onRendered);
try {
ias.off('prev', this.showTriggerPrev);
} catch (exception) {}
};
/**
* @public
*/
IASTriggerExtension.prototype.next = function() {
this.enabled = false;
this.ias.pause();
if (this.$triggerNext) {
this.$triggerNext.remove();
this.$triggerNext = null;
}
this.ias.next();
};
/**
* @public
*/
IASTriggerExtension.prototype.prev = function() {
this.enabled = false;
this.ias.pause();
if (this.$triggerPrev) {
this.$triggerPrev.remove();
this.$triggerPrev = null;
}
this.ias.prev();
};
/**
* @public
*/
IASTriggerExtension.prototype.defaults = {
text: 'Load more items',
html: '<div class="ias-trigger ias-trigger-next" style="text-align: center; cursor: pointer;"><a>{text}</a></div>',
textPrev: 'Load previous items',
htmlPrev: '<div class="ias-trigger ias-trigger-prev" style="text-align: center; cursor: pointer;"><a>{text}</a></div>',
offset: 0
};
/**
* @public
* @type {number}
*/
IASTriggerExtension.prototype.priority = 1000;