We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76dcbf8 commit cfa1199Copy full SHA for cfa1199
resources/ecs/main.ecs
@@ -195,14 +195,17 @@ BuildPage:
195
create Notes in Main
196
create ShowNotes in Notes
197
DoNotes:
198
- set style `display` of ShowNotes to `none`
199
set the content of ShowNotes to `Show Notes`
200
on click ShowNotes
201
begin
202
attach Notes to `developer-notes`
203
set style `display` of Notes to `block`
204
set the content of ShowNotes to `Hide Notes`
205
- on click ShowNotes go to DoNotes
+ on click ShowNotes
+ begin
206
+ set style `display` of Notes to `none`
207
+ go to DoNotes
208
+ end
209
end
210
211
stop
0 commit comments