Skip to content

Instantly share code, notes, and snippets.

@Ionut-B
Ionut-B / micromodal.css
Created April 1, 2019 09:05 — forked from ghosh/micromodal.css
Demo modal styles for micromodal.js and corresponding expected html. If using this, set the `awaitCloseAnimation` in config to true
/**************************\
Basic Modal Styles
\**************************/
.modal {
font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}
.modal__overlay {
position: fixed;
@Ionut-B
Ionut-B / useful-tips.js
Last active January 19, 2022 12:52 — forked from paulknulst/useful-tips.js
JavaScript Useful Tips
// 1. Shorten the console log
const log = console.log.bind(document)
log("does it work?")
log("yes")
log(5)
// 2. Merge two arrays into one
const array1 = ["One", "Two", "Three"]
const array2 = ["Four", "Five", "Six"]