Menu

Removing console message

Help
Gorilla
2006-08-13
2013-04-02
  • Gorilla

    Gorilla - 2006-08-13

    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?

     
    • Carlos Eduardo Goncalves

      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.

       
      • Nucleo

        Nucleo - 2006-08-16

        Thanks :)

        Keep up the goo dwork with Clean! :)

         

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.