Skip to content

Commit 27837f2

Browse files
committed
Change example initial state
1 parent 80f684b commit 27837f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
html = doc.innerHTML
2222
} else if (url.pathname === '/marquee') {
23-
html = `<marquee>${url.searchParams.get('q') || 'blank'}</marquee>`
23+
html = `<marquee>${url.searchParams.get('q') || '🐈 Nothing to preview 🐈'}</marquee>`
2424
}
2525
const promiseHTML = new Promise(resolve => resolve(html))
2626
return new Promise(resolve => resolve({text: () => promiseHTML}))
@@ -30,7 +30,7 @@
3030
</head>
3131
<body>
3232
<remote-input aria-owns="marquee-preview" src="/marquee">
33-
<label>Marquee preview <textarea autofocus>🐈🐈🐈🐈🐈</textarea></label>
33+
<label>Marquee preview <textarea></textarea></label>
3434
</remote-input>
3535
<div id="marquee-preview"></div>
3636

0 commit comments

Comments
 (0)