UNPKG

996 BMarkdownView Raw
1
2# apeman-ui-contrib-angular-storaging
3
4apeman ui module for angular to work with localstorage.
5
6
7## Installation
8
9First include in your HTML:
10
11```
12<script src="angular.js">
13<script src="">
14```
15
16You can download this file from the following places:
17
18* (Google CDN)[https://developers.google.com/speed/libraries/devguide#angularjs]<br>e.g. <code>//ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/undefined</code>
19* (Bower)[http://bower.io]<br>e.g. <pre><code>bower install @X.Y.Z</code></pre>
20* (code.angularjs.org)[http://code.angularjs.org]<br>e.g. <pre><code>&quot;//code.angularjs.org/X.Y.Z/&quot;</code></pre>
21
22where X.Y.Z is the AngularJS version you are running.
23
24Then load the module in your application by adding it as a dependent module:
25
26```
27angular.module('app', ['apeman-ui-contrib-angular-storaging']);
28```
29
30With that you&apos;re ready to get started!
31
32
33
34
35## Module Components
36
37### service
38
39| Name | Description |
40| :--: | :--: |
41| apStorage | <p>Local storage wrapper.</p> |
42
43
44
45
46
47
48