forked from c9/cloud9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnoderunner.xml
More file actions
56 lines (50 loc) · 1.54 KB
/
Copy pathnoderunner.xml
File metadata and controls
56 lines (50 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<a:application xmlns:a="http://ajax.org/2005/aml">
<a:debugger id="dbg"
state-running = "stRunning"
state-attached = "stAttached"
model-sources = "mdlDbgSources"
model-stack = "mdlDbgStack"
model-breakpoints = "mdlDbgBreakpoints"
onbreak = ""
oncontinue = "" />
<a:debughost id="dbgNode"
type = "v8-ws"
autoinit = "false"
model-tabs = "mdlTabs"
state-connected = "stDebuggerConnected" />
<a:debughost id="dbgChrome"
type = "chrome-ws"
autoinit = "false"
model-tabs = "mdlTabs"
state-connected = "stDebuggerConnected" />
<a:state id="stDebugProcessRunning" active="false" />
<a:window id="winTab"
title="Choose a Tab"
icon="chromium_16.png"
zindex="10"
center="true"
modal="true"
width="450"
height="200"
buttons="close"
visible="false">
<a:list id="lstTabs"
model="mdlTabs"
anchors="10 10 40 10"
multiselect="false"
autoselect="false"
each="[tab]"
caption="[@url]"
empty-message="Loading tabs..."
onafterchoose = "btnTabsOk.dispatchEvent('click');"/>
<a:button id="btnTabsOk"
right="10"
bottom="10"
width="60"
disabled="{!lstTabs.selected}"
default="true"
onclick="winTab.close();dbg.attach(dbgChrome, {lstTabs.selected})">
OK
</a:button>
</a:window>
</a:application>