Remove unnecessary double quotes

This caused a bit of confusion for me when I first encountered it. (Because the rest of the tutorial doesn't care to use quotes unless its a string.
pull/4184/head
Dibyo Majumdar 6 years ago committed by GitHub
parent dac64a363c
commit f3a65b8c56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,6 +6,6 @@
div { width: 100%; height: 100%; } div { width: 100%; height: 100%; }
</style> </style>
<div on:mousemove="{e => m = { x: e.clientX, y: e.clientY }}"> <div on:mousemove={e => m = { x: e.clientX, y: e.clientY }}>
The mouse position is {m.x} x {m.y} The mouse position is {m.x} x {m.y}
</div> </div>

Loading…
Cancel
Save