Skip to content

Commit

Permalink
update documentation, changelong re: new tables, spreadsheets
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Lord committed May 11, 2014
1 parent 006e8be commit 545d917
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 27 deletions.
4 changes: 2 additions & 2 deletions docs/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Ignoring some HTML things to conserve space, you get the point. This is a basic
<html>
<head>
<meta charset="utf-8">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/tabletop.js/1.1.0/tabletop.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="js/tabletop.js"></script>
<script type="text/javascript" src='js/sheetsee.js'></script>
<link rel="stylesheet" type="text/css" href="css/sss.css">
</head>
Expand Down
20 changes: 20 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
### Sheetsee v3

## May 10, 2014
### Better Table Template Options

Updated `sheetsee-tables` to allow you to re-use a template (rather than duplicating it for each different table you wanted to create). Previously it assumed your HTML table `div` id matched your script template `id`. This means that you can pass in an extra key/value pair in your table options into `Sheetsee.maketable()`. The new pair it takes is: `"templateID" : "yourtemplateid"`. Example below, full `sheetsee-tables` documentation [here](docs/sheetsee-tables.html).

```JavaScript
var tableOptions = {
"data": gData,
"pagination": 10,
"tableDiv": "#fullTable",
"filterDiv": "#fullTableFilter",
"templateID": "tableTemplte"
}
Sheetsee.makeTable(tableOptions)
```

## May 2014
### Important Google Spreadsheets & Tabletop News

Google recently updated their Google Spreadsheets and the API. For a bit this was breaking things using the old API, including Tabletop. This has been fixed and the latest version of tabletop.js works on both old and new spreadsheets. **Be sure to include at least version 1.3.4 in your project.**

## August 13, 2013
### Charting Intake
Expand Down
32 changes: 7 additions & 25 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Each of **sheetsee.js**'s features are divided into modules. Use just the parts
| **sheetsee-charts** | Includes 3 basic d3 charts: bar, line and pie. You can also [use your own](docs/custom-charts.md). | [Doc](./docs/sheetsee-charts.md) |


## Making Things
## In the Wild

What can you make with **Sheetsee.js**? Lots of things, here are some examples:

Expand All @@ -29,33 +29,15 @@ What can you make with **Sheetsee.js**? Lots of things, here are some examples:

**List your sheetsee project here: file an [issue or pull request](http://www.github.com/jlord/sheetsee.js).**

## Demos

This comment has been minimized.

Copy link
@andreea199515

This comment has been minimized.

Copy link
@andreea199515

Demos pages for the documentation.

- [Table Demo](./demos/demo-table.html)
- [Map Demo](./demos/demo-map.html)
- [Chart Demo](./demos/demo-chart.html)

## Documentation
# Resources & Documentation

More resources on using Sheetsee.js:

#### Getting Started

- [About Sheetsee.js](./docs/about.md)

This comment has been minimized.

Copy link
@Dylay

Dylay Apr 4, 2022

Yes

- [Building Sheetsee](./docs/building.md)
- [Basics](./docs/basics.md)

#### Ideas
| Getting Started | Ideas | Use | Demos |
| --- | --- | --- | --- |
| [About Sheetsee.js](./docs/about.md)<br> [Building Sheetsee](./docs/building.md)<br> [Basics](./docs/basics.md) | [Fork-n-Go](./docs/fork-n-go.md)<br> [Tips!](./docs/tips.md)<br> [Custom charts](./docs/custom-charts.md) | [Sheetsee-core](./docs/sheetsee-core.md)<br> [Sheetsee-tables](./docs/sheetsee-tables.md)<br> [Sheetsee-maps](./docs/sheetsee-maps.md)<br> [Sheetsee-charts](./docs/sheetsee-charts.md) | [Table Demo](./demos/demo-table.html)<br> [Map Demo](./demos/demo-map.html)<br> [Chart Demo](./demos/demo-chart.html) |

- [Fork-n-Go](./docs/fork-n-go.md)
- [Tips!](./docs/tips.md)
- [Custom charts](./docs/custom-charts.md)
## Note on New Google Spreadsheets

#### Use
Google recently updated their Google Spreadsheets and the API. For a bit this was breaking things using the old API, including Tabletop. This has been fixed and the latest version of tabletop.js works on both old and new spreadsheets. **Be sure to include at least version 1.3.4 in your project.**

- [Sheetsee-core](./docs/sheetsee-core.md)
- [Sheetsee-tables](./docs/sheetsee-tables.md)
- [Sheetsee-maps](./docs/sheetsee-maps.md)
- [Sheetsee-charts](./docs/sheetsee-charts.md)

2 comments on commit 545d917

@tonyvu939
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

img_0002

@tonyvu939
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

activation old iphone 5

Please sign in to comment.