HEX
Server: Apache/2.4.59 (Debian)
System: Linux skycube.cz 4.19.0-25-amd64 #1 SMP Debian 4.19.289-2 (2023-08-08) x86_64
User: ilya (534)
PHP: 7.3.31-1~deb10u7
Disabled: 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,
Upload Files
File: /var/www/ilya/data/www/irkboard.ru/public/js/ips.friends.js
/************************************************/
/* IPB3 Javascript								*/
/* -------------------------------------------- */
/* ips.friends.js - Friends management code		*/
/* (c) IPS, Inc 2008							*/
/* -------------------------------------------- */
/* Author: Rikki Tissier						*/
/************************************************/

var _friends = window.IPBoard;

_friends.prototype.friends = {
	init: function()
	{
		Debug.write("Initializing ips.friends.js");
		
		document.observe("dom:loaded", function(){
			ipb.friends.initEvents();
		});
	},
	
	initEvents: function()
	{
		document.observe("ipb:friendRemoved", ipb.friends.removedFriend);
	},
	
	// Event handler for event fired when a friend is removed
	removedFriend: function(e)
	{
		if( e.memo && e.memo.friendID )
		{
			if( $('member_id_' + e.memo.friendID ) )
			{
				new Effect.Fade( $('member_id_' + e.memo.friendID), { duration: 0.5 } );
			}
		}
		Event.stop(e);
	}
}
ipb.friends.init();