Skip to content

Commit

Permalink
fix: remove absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmo314 committed Nov 27, 2023
1 parent ef116cf commit 94ba1e6
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions examples/client/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script src="/appendable.min.js"></script>
<script src="appendable.min.js"></script>
<script>
Appendable.init(
"/green_tripdata_2023-01.jsonl",
"/green_tripdata_2023-01.jsonl.index"
"green_tripdata_2023-01.jsonl",
"green_tripdata_2023-01.jsonl.index"
).then(async (db) => {
// populate fields
db.fields().then((fields) => {
Expand Down Expand Up @@ -69,7 +69,12 @@
</script>
</head>
<body>
<h1>Appendable - Yellow Cab Trip Data in 01/2023</h1>
<h1>Appendable - NYC Green Cab Trip Data in 01/2023</h1>
<div>
Download the raw data here:
<a href="green_tripdata_2023-01.jsonl">JSONL</a> -
<a href="green_tripdata_2023-01.jsonl.index">Appendable Index</a>
</div>
<div style="display: flex">
<div>
<h2>Fields</h2>
Expand Down

0 comments on commit 94ba1e6

Please sign in to comment.