|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 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, Directory : /proc/712700/cwd/freemius/templates/js/ |
Upload File : |
<?php
/**
* @package Freemius
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 1.2.2.7
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<script type="text/javascript">
(function ($) {
if ($.fn.contentChange)
return;
/**
* Content change event listener.
*
* @url http://stackoverflow.com/questions/3233991/jquery-watch-div/3234646#3234646
*
* @param {function} callback
*
* @returns {object[]}
*/
$.fn.contentChange = function (callback) {
var elements = $(this);
elements.each(function () {
var element = $(this);
element.data("lastContents", element.html());
window.watchContentChange = window.watchContentChange ?
window.watchContentChange :
[];
window.watchContentChange.push({
"element" : element,
"callback": callback
});
});
return elements;
};
setInterval(function() {
if ( window.watchContentChange ) {
for ( var i in window.watchContentChange ) {
if ( window.watchContentChange[ i ].element.data( 'lastContents' ) !== window.watchContentChange[ i ].element.html() ) {
window.watchContentChange[ i ].callback.apply( undefined, [ false ] );
window.watchContentChange[ i ].element.data( 'lastContents', window.watchContentChange[ i ].element.html() )
}
}
}
}, 500 );
})(jQuery);
</script>