livebook/assets/js/lib/utils.js
Jonatan Kłosko 77675ad61e
UI polishing (#43)
* Tiny UI improvements

* Add icon for entering insert mode on a markdown cell

* Highlight selected section

* Improve contenteditable elements

* Highlight notebook/section name while editing
2021-02-18 15:11:24 +01:00

10 lines
263 B
JavaScript

export function isMacOS() {
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
}
export function isEditableElement(element) {
return (
["input", "textarea"].includes(element.tagName.toLowerCase()) ||
element.contentEditable === "true"
);
}