* UPDATE: Adds cell and formula editing * FIX: Do not loose focus when clicking on the formula we are editing * FIX: Minimal implementation of browse mode * FIX: Initial browse mode within sheets * UPDATE: Webapp Minimal Web Application
18 lines
702 B
HTML
18 lines
702 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/ironcalc.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- <meta name="theme-color" content="#1bb566"> -->
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#F2994A" />
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black" />
|
|
<title>IronCalc Spreadsheet</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<script defer data-domain="app.ironcalc.com" src="https://plausible.io/js/script.js"></script>
|
|
</body>
|
|
</html>
|