UpTheCreek
UpTheCreek

Reputation: 32391

Webkit javascript debugger - possible to have console and script view open at same time?

With widescreen monitors, there's plenty of horizontal screen space. In the webkit debugger (chrome) I'd like to be able to view both the script window (when stepping through code) and the console window at the same time.

Unfortunately I can't figure out how to do this - is it possible?

Upvotes: 0

Views: 165

Answers (1)

ajm
ajm

Reputation: 20105

Generally, the ESC key is bound to showing and hiding the console. If you are looking at another panel and hit ESC (or click the second-from-left icon in the toolbar row; it looks like a > with some lines next to it), that will layer the console over the panel that you are looking at.

I think that should allow you to run the script debugger more or less side-by-side with the console.

Upvotes: 1

Related Questions