You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in certain case , trace output could be very annoying .
i hacked it like this:
public function moveConsole(){
var console=body.querySelector("#debug_console");
console.style.position="relative";
var consoleWrapper=js.Browser.document.createElement("div");
consoleWrapper.style.backgroundColor="#00AAFF";
consoleWrapper.style.width= consoleWrapper.style.height="200px";
consoleWrapper.style.position="absolute";
consoleWrapper.style.right="0";
consoleWrapper.style.overflow="auto";
body.appendChild(consoleWrapper);
consoleWrapper.appendChild(console);
}
why not having such an option ?
or simply let trace output to the console ?
thx
The text was updated successfully, but these errors were encountered:
in certain case , trace output could be very annoying .
i hacked it like this:
why not having such an option ?
or simply let trace output to the console ?
thx
The text was updated successfully, but these errors were encountered: