pull/11265/head
Rich Harris 2 years ago
parent 9e05d9427c
commit 1d47e69d89

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,5 +1,4 @@
<script>
import { log } from "./log";
import Sub from "./sub.svelte";
</script>

@ -1,7 +1,3 @@
<script>
import { log } from "./log";
</script>
<svelte:window onclick={() => console.log('window sub')} />
<svelte:document onclick={() => console.log('document sub')} />

@ -1,7 +1,3 @@
<script>
import { log } from "./log";
</script>
<div onclick={() => console.log('outer div onclick')}>
<div on:click={() => console.log('inner div on:click')}>
<button onclick={() => console.log('button onclick')} on:click={() => console.log('button on:click')}>main</button>

@ -1,7 +1,3 @@
<script>
import { log } from "./log";
</script>
<div onclickcapture={() => console.log('div onclickcapture')}>
<button onclick={() => console.log('button onclick')}>main</button>
</div>

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,2 +0,0 @@
/** @type {any[]} */
export const log = [];

@ -1,6 +1,5 @@
<script>
import { writable } from 'svelte/store';
import { log } from './log';
const count = writable(0);
let ran = 0;

Loading…
Cancel
Save