When you change/load pages,
FreiChatX will wait , for your site to load completely .
this was done so that freichat loads smoothly without interfering with your site.
If you dont want this , you can change it by
going to ~/freichat/client/freichat.js
You will the lines
FreiChat.selfInvoke = function()
{
if(X_init == false)
{
$jn=jQuery.noConflict(freidefines['jconflicts']);
soundManager.url = freidefines.url+"client/jquery/img/";
$jn(window).load(function(){
$jn(document).ready(function(){
//soundManager.url = freidefines.url+"client/jquery/img/";
FreiChat.oldtitle=document.title;
FreiChat.statusUpdate();
FreiChat.setInactivetime();
FreiChat.init_process_freichatX();
});
});
X_init = true;
}
}();
Replace that block by the following
FreiChat.selfInvoke = function()
{
if(X_init == false)
{
$jn=jQuery.noConflict(freidefines['jconflicts']);
soundManager.url = freidefines.url+"client/jquery/img/";
//$jn(window).load(function(){
//$jn(document).ready(function(){
//soundManager.url = freidefines.url+"client/jquery/img/";
FreiChat.oldtitle=document.title;
FreiChat.statusUpdate();
FreiChat.setInactivetime();
FreiChat.init_process_freichatX();
//});
//});
X_init = true;
}
}();
Now , freichat will load as soon as you change your page , nothing more than this is
possible ,
is this what you wanted ?
When you change/load pages,
FreiChatX will wait , for your site to load completely .
this was done so that freichat loads smoothly without interfering with your site.
If you dont want this , you can change it by
going to ~/freichat/client/freichat.js
You will the lines
<code>
FreiChat.selfInvoke = function()
{
if(X_init == false)
{
$jn=jQuery.noConflict(freidefines['jconflicts']);
soundManager.url = freidefines.url+"client/jquery/img/";
$jn(window).load(function(){
$jn(document).ready(function(){
//soundManager.url = freidefines.url+"client/jquery/img/";
FreiChat.oldtitle=document.title;
FreiChat.statusUpdate();
FreiChat.setInactivetime();
FreiChat.init_process_freichatX();
});
});
X_init = true;
}
}();
</code>
Replace that block by the following
<code>
FreiChat.selfInvoke = function()
{
if(X_init == false)
{
$jn=jQuery.noConflict(freidefines['jconflicts']);
soundManager.url = freidefines.url+"client/jquery/img/";
//$jn(window).load(function(){
//$jn(document).ready(function(){
//soundManager.url = freidefines.url+"client/jquery/img/";
FreiChat.oldtitle=document.title;
FreiChat.statusUpdate();
FreiChat.setInactivetime();
FreiChat.init_process_freichatX();
//});
//});
X_init = true;
}
}();
</code>
Now , freichat will load as soon as you change your page , nothing more than this is
possible ,
is this what you wanted ?