mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 21:33:16 +08:00
77675ad61e
* 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
10 lines
263 B
JavaScript
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"
|
|
);
|
|
}
|