Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
137
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
main
inference-playground
/
src
/
lib
/
actions
/
autofocus.ts
Thomas G. Lopes
add quota modal
a5619c2
15 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
123 Bytes
import
{ tick }
from
"svelte"
;
export
function
autofocus
(
node: HTMLElement
) {
tick
().
then
(
() =>
{
node.
focus
();
});
}