Fix bug on tutorial step 14d.

Line 19 was accessing a "hovering" variable that hadn't been initialized in the top script tag. This just initializes the variable.
pull/3303/head
Chuck Callebs 6 years ago committed by GitHub
parent f65ce85748
commit 2fc8bfcf3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,7 @@
<script> <script>
import Hoverable from './Hoverable.svelte'; import Hoverable from './Hoverable.svelte';
let hovering;
</script> </script>
<style> <style>

Loading…
Cancel
Save