Skip to content

Commit

Permalink
Merge pull request #5 from victorqribeiro/victor/cleanup/remove-old-a…
Browse files Browse the repository at this point in the history
…ll-function

[cleanup] remove old $all function
  • Loading branch information
victorqribeiro authored Sep 14, 2024
2 parents 75e8418 + fc2d386 commit 197d0f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiny.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
return elm
})
window['$'] = selector => document.querySelector(selector)
window['$$'] = window['$all'] = selector => Array.from(document.querySelectorAll(selector))
window['$$'] = selector => Array.from(document.querySelectorAll(selector))
})()

0 comments on commit 197d0f8

Please sign in to comment.