Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inf-playground-canvas
like
5
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0ce274f
inf-playground-canvas
/
src
/
lib
/
actions
/
autofocus.ts
Thomas G. Lopes
add quota modal
a5619c2
8 months ago
raw
Copy download link
history
blame
123 Bytes
import
{ tick }
from
"svelte"
;
export
function
autofocus
(
node: HTMLElement
) {
tick
().
then
(
() =>
{
node.
focus
();
});
}