-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels