File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 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) {
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/' ,
Original file line number Diff line number Diff line change 1313@description
1414
1515Angular-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
2025angular.module('myApp', ['angular-data.DS'])
2126 .config(function (DSProvider) {
You can’t perform that action at this time.
0 commit comments