File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,13 @@ module.exports = function (grunt) {
172
172
dest : 'doc/resources/img/' ,
173
173
flatten : true
174
174
} ,
175
+ chart : {
176
+ expand : true ,
177
+ cwd : 'guide/' ,
178
+ src : 'chart.png' ,
179
+ dest : 'doc/resources/img/' ,
180
+ flatten : true
181
+ } ,
175
182
cream_dust : {
176
183
expand : true ,
177
184
cwd : 'guide/' ,
Original file line number Diff line number Diff line change 13
13
@description
14
14
15
15
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.
18
18
19
+ <p>
20
+ <img src="/resources/img/chart.png" width="940">
21
+ </p>
22
+
23
+ ## Example:
19
24
```js
20
25
angular.module('myApp', ['angular-data.DS'])
21
26
.config(function (DSProvider) {
You can’t perform that action at this time.
0 commit comments