-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickstart.xml
More file actions
106 lines (100 loc) · 3.46 KB
/
quickstart.xml
File metadata and controls
106 lines (100 loc) · 3.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<a:application xmlns:a="http://ajax.org/2005/aml">
<a:window
id = "quickStartDialog"
title = "Here are a few pointers to get you started!"
center = "true"
modal = "false"
buttons = "close"
kbclose = ""
width = "500"
height = "210"
skinset = "quickstart"
skin = "win-quickstart"
onhide = "require('ext/quickstart/quickstart').closeStart();"
draggable = "false">
<div class="tgtext container">
<a href="javascript:void(0)" onclick="require('ext/quickstart/quickstart').shutdownQSStartGT();">For a detailed guided tour, <span class="tgLink">click here!</span></a>
</div>
<div class="qsSupportText container">
<p>If you ever run into trouble, be sure to check out our support page on
<a href="http://support.cloud9ide.com/home" class="supportLink" target="_blank">support.cloud9ide.com</a>,
or talk to us on <a href="https://twitter.com/#!/C9Support" class="supportLink" target="_blank">Twitter</a>.</p>
</div>
<a:hbox class="qsCBContainer" edge="2 0 0 0" padding="2">
<div class="checkboxDiv">
<a:checkbox id="quickStartCheckbox"
skin = "checkbox_black"
checked = "[{require('ext/settings/settings').model}::auto/help/@show]"
value = "[{require('ext/settings/settings').model}::auto/help/@show]"
onafterchange = "require('ext/quickstart/quickstart').setState(this.value);"
>Show this quick start on startup</a:checkbox>
</div>
<div class="buttonDiv">
<a:button
default = "2"
width = "200"
skin = "btn-default-css3"
class = "btn-green btnclosetour"
onclick = "require('ext/quickstart/quickstart').closeStart();">
Got it, thanks!
</a:button>
</div>
</a:hbox>
</a:window>
<a:window
id = "qsProjectBar"
title = ""
center = "false"
modal = "false"
buttons = ""
kbclose = "false"
width = "200"
skinset = "quickstart"
skin ="qsImage"
draggable = "false">
<a:vbox class="qsProjectBar">
</a:vbox>
</a:window>
<a:window
id = "qsMenuBar"
title = ""
center = "false"
modal = "false"
buttons = ""
kbclose = "false"
width = "200"
skinset = "quickstart"
skin ="qsImage"
draggable = "false">
<a:vbox class="qsMenuBar">
</a:vbox>
</a:window>
<a:window
id = "qsToolbar"
title = ""
center = "false"
modal = "false"
buttons = ""
kbclose = "false"
width = "200"
skinset = "quickstart"
skin ="qsImage"
draggable = "false">
<a:vbox class="qsToolbar">
</a:vbox>
</a:window>
<a:window
id = "qsCLI"
title = ""
center = "false"
modal = "false"
buttons = ""
kbclose = "false"
width = "200"
skinset = "quickstart"
skin ="qsImage"
draggable = "false">
<a:vbox class="qsCLI">
</a:vbox>
</a:window>
</a:application>