Skip to content

Commit ed508f0

Browse files
committed
Added chart.
1 parent b56a425 commit ed508f0

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

Gruntfile.js

+7
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,13 @@ module.exports = function (grunt) {
172172
dest: 'doc/resources/img/',
173173
flatten: true
174174
},
175+
chart: {
176+
expand: true,
177+
cwd: 'guide/',
178+
src: 'chart.png',
179+
dest: 'doc/resources/img/',
180+
flatten: true
181+
},
175182
cream_dust: {
176183
expand: true,
177184
cwd: 'guide/',

guide/chart.png

121 KB
Loading

guide/overview/overview.doc

+7-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,14 @@
1313
@description
1414

1515
Angular-data is an in-browser data store for [Angular.js](http://angularjs.org).
16-
[Synchronous methods](/documentation/guide/synchronous/index) talk only to the data store, and
17-
[asynchronous methods](/documentation/guide/asynchronous/index) persist changes to a persistence layer.
16+
[Synchronous methods](/documentation/guide/synchronous/index) work only with data already in the data store, and
17+
[asynchronous methods](/documentation/guide/asynchronous/index) work with persistence layer.
1818

19+
<p>
20+
<img src="/resources/img/chart.png" width="940">
21+
</p>
22+
23+
## Example:
1924
```js
2025
angular.module('myApp', ['angular-data.DS'])
2126
.config(function (DSProvider) {

0 commit comments

Comments
 (0)