Skip to content

Commit 970a373

Browse files
author
Jessica Lord
committed
fixes relative links in docs pointing to demos - fixes jlord#39
1 parent e5f1c7d commit 970a373

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/sheetsee-charts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sheetsee-charts
22

3-
_[View Demo](/demos/demo-chart.html)_
3+
_[View Demo](../demos/demo-chart.html)_
44

55
Sheetsee.js provides three [D3.js](http://d3js.org/) chart options to use with your spreadsheet data: a bar chart, line graph and pie chart. You can also use a custom D3 chart with Sheetsee, read about that [here](custom-charts.md).
66

docs/sheetsee-maps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sheetsee-maps
22

3-
_[View Demo](/demos/demo-map.html)_
3+
_[View Demo](../demos/demo-map.html)_
44

55
Sheetsee.js uses [Mapbox.js](http://mapbox.com/mapbox.js) and [Leaflet.js](http://leafletjs.com/) to make maps of your **points**, **polygons**, **lines** or **multipolygons** (all coordinate based). Details on what that actually looks like [here](http://leafletjs.com/examples/geojson.html).
66

docs/sheetsee-tables.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sheetsee-tables
22

3-
_[View Demo](/demos/demo-table.html)_
3+
_[View Demo](../demos/demo-table.html)_
44

55
With this module you can create tables of your data that are sortable, searchable and paginate-able.
66

@@ -43,9 +43,9 @@ _The variables inside the {{}} must match the column headers in your spreadsheet
4343
<script type="text/javascript">
4444
document.addEventListener('DOMContentLoaded', function() {
4545
var tableOptions = {
46-
"data": gData,
47-
"pagination": 10,
48-
"tableDiv": "#fullTable",
46+
"data": gData,
47+
"pagination": 10,
48+
"tableDiv": "#fullTable",
4949
"filterDiv": "#fullTableFilter"
5050
}
5151
Sheetsee.makeTable(tableOptions)
@@ -75,9 +75,9 @@ You pass in an object containing:
7575

7676
```javascript
7777
var tableOptions = {
78-
"data": gData,
79-
"pagination": 10,
80-
"tableDiv": "#fullTable",
78+
"data": gData,
79+
"pagination": 10,
80+
"tableDiv": "#fullTable",
8181
"filterDiv": "#fullTableFilter"
8282
}
8383
Sheetsee.makeTable(tableOptions)

0 commit comments

Comments
 (0)