mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 21:12:44 +03:00
0a70f2edf5
- Closes #7733 - Add infrastructure for defining custom visualizations - Add all visualizations # Important Notes ⚠️ Changes made: - "Fit all" has been changed to always animate - this is because behavior was previously inconsistent: - the scatterplot would always animate on "Fit all", but - the histogram would never animate on "Fit all"
15 lines
396 B
HTML
15 lines
396 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Enso GUI</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<div id="enso-dashboard" class="enso-dashboard"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|