Hi All,
This may have been answered somewhere but I couldn't find it. Yes, I am a new Clean AJAX user (just completed my first modifcation for TorrentFlux).
How do I remove the "Clean AJAX Engine Console" hyperlink on the top righthand corner of the screen?
Hi,
Inside the Clean script you will find the Engine constructor inside the startUp function as follows:
startUp = function() { clean = (document.body) ? new Engine(true) : setTimeout(startUp, 1000); }
Just change to false the boolean argument present on the Engine constructor:
clean = (document.body) ? new Engine(false) : setTimeout(startUp, 1000);
That's it.
Thanks :)
Keep up the goo dwork with Clean! :)
Log in to post a comment.
Hi All,
This may have been answered somewhere but I couldn't find it. Yes, I am a new Clean AJAX user (just completed my first modifcation for TorrentFlux).
How do I remove the "Clean AJAX Engine Console" hyperlink on the top righthand corner of the screen?
Hi,
Inside the Clean script you will find the Engine constructor inside the startUp function as follows:
startUp = function() {
clean = (document.body) ? new Engine(true) : setTimeout(startUp, 1000);
}
Just change to false the boolean argument present on the Engine constructor:
clean = (document.body) ? new Engine(false) : setTimeout(startUp, 1000);
That's it.
Thanks :)
Keep up the goo dwork with Clean! :)