Skip to content

Commit 1effc22

Browse files
committed
Prepare chapter 15 for editing
1 parent 03fc370 commit 1effc22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

15_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ To get precise information about the place where a mouse event happened, you can
280280

281281
{{id mouse_drawing}}
282282

283-
The following implements a primitive drawing program. Every time you click the document, it adds a dot under your mouse pointer. See [Chapter ?](paint) for a less primitive drawing program.
283+
The following program implements a primitive drawing application. Every time you click the document, it adds a dot under your mouse pointer. See [Chapter ?](paint) for a less primitive drawing application.
284284

285285
```{lang: html}
286286
<style>
@@ -291,7 +291,7 @@ The following implements a primitive drawing program. Every time you click the d
291291
.dot {
292292
height: 8px; width: 8px;
293293
border-radius: 4px; /* rounds corners */
294-
background: blue;
294+
background: teal;
295295
position: absolute;
296296
}
297297
</style>

0 commit comments

Comments
 (0)