-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
461 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/webfontloader"></script> | ||
<script>WebFont.load({google:{families:["Roboto Mono:200,400","Material Icons","Open Sans:300,400"]}})</script> | ||
|
||
<script src="/node_modules/@finos/perspective/dist/umd/perspective.js"></script> | ||
<script src="/node_modules/@finos/perspective-viewer/dist/umd/perspective-viewer.js"></script> | ||
<script src="/node_modules/@finos/perspective-viewer-datagrid/dist/umd/perspective-viewer-datagrid.js"></script> | ||
<script src="/node_modules/@finos/perspective-viewer-d3fc/dist/umd/perspective-viewer-d3fc.js"></script> | ||
|
||
<script src="csv.js"></script> | ||
|
||
<link rel='stylesheet' href="index.css"> | ||
<link rel='stylesheet' href="/node_modules/@finos/perspective-viewer/dist/umd/material-dense.css" is="custom-style"> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div id="drop-area"> | ||
<form class="my-form"> | ||
<p>Upload a CSV file by dragging from your desktop and dropping onto the dashed region.</p> | ||
<p>(Data is processed in browser, and never sent to any server).</p> | ||
<input type="file" id="fileElem" multiple accept="text/csv"> | ||
<label class="button" for="fileElem">Select a file</label> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/> | ||
|
||
<script src="/node_modules/@finos/perspective/dist/umd/perspective.js"></script> | ||
<script src="/node_modules/@finos/perspective-viewer/dist/umd/perspective-viewer.js"></script> | ||
<script src="/node_modules/@finos/perspective-viewer-datagrid/dist/umd/perspective-viewer-datagrid.js"></script> | ||
<script src="/node_modules/@finos/perspective-viewer-d3fc/dist/umd/perspective-viewer-d3fc.js"></script> | ||
|
||
<script src="csv.js"></script> | ||
|
||
<link rel="stylesheet" href="index.css" /> | ||
<link rel="stylesheet" crossorigin="anonymous" href="/node_modules/@finos/perspective-viewer/dist/css/material.css" /> | ||
</head> | ||
|
||
<body> | ||
<div id="drop-area"> | ||
<form class="my-form"> | ||
<p> | ||
Upload a CSV file by dragging from your desktop and dropping | ||
onto the dashed region. | ||
</p> | ||
<p> | ||
(Data is processed in browser, and never sent to any | ||
server). | ||
</p> | ||
<input type="file" id="fileElem" multiple accept="text/csv" /> | ||
<label class="button" for="fileElem">Select a file</label> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.