chiark
/
gitweb
/
~ianmdlvl
/
otter.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3907a04
)
script: Add a missing comma in a type definition
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 18 Apr 2022 12:20:17 +0000
(13:20 +0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 18 Apr 2022 12:30:12 +0000
(13:30 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
templates/script.ts
patch
|
blob
|
history
diff --git
a/templates/script.ts
b/templates/script.ts
index ab7b2ab698f1b57d7bad0cf22b3a50b2ffa6ddb6..7007b4735249e6f7df27d441700d7af9083b44d2 100644
(file)
--- a/
templates/script.ts
+++ b/
templates/script.ts
@@
-971,7
+971,7
@@
function some_mousedown(e : MouseEvent) {
type MouseFindClicked = null | {
clicked: PieceId[],
held: PlayerId | null,
- pinned: boolean
+ pinned: boolean
,
};
type PieceSet = { [piece: string]: true };