You are not logged in.
Pages: 1
Hi all;
I'm a newbie at this but have been playing with this the latter part of the day and I gotta say it ROCKS!
However, there's something happening and I couldn't find it described in the forum or in the tickets.
I get a Javascript alert that says "Flushed xx Events" where xx has ranged from around 100 to over 400. Has anyone seen this? It works and submits to my db (using Perl (dbman) to a flat file db) but that alert box pops up every time.
I'm guessing it's coming from here:
if(document.all)
{
for(var i = 0; i < document.all.length; i++)
{
for(var j in document.all[i])
{
if(/^on/.test(j) && typeof document.all[i][j] == 'function')
{
document.all[i][j] = null;
x++;
}
}
}
}
alert('Flushed ' + x + ' events.');
Should I be worried about it or is this normal?
I am using the nightly version on 6-14-05.
Thanks!
Offline
Do not worry mate, it s for dev purpose, probobly someone wants to free up javascript generated buffers or someting, i have no great knowledge in js, so can`t explain more. But do not worry, comment out
window.onunload = HTMLArea.flushEvents;
on your config part, alert part in big js file.
Offline
Great, thanks!
Offline
Pages: 1