You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angular-local-storage/README.md

43 lines
1.2 KiB
Markdown

12 years ago
angular-local-storage
=====================
12 years ago
An Angular module that gives you access to the browsers local storage
Remember to set your app name (settings.appPrefix) in the settings at the beginning of angular-local-storage.js:
```javascript
angular.module('LocalStorageModule').value('prefix', 'myPre');
angular.module('testApp', ['LocalStorageModule'])
.config(function ($routeProvider) {
....
});
```
12 years ago
To do:
- Add tests
12 years ago
- Expand Readme
12 years ago
Example use:
```javascript
angular.module('yourModule', ['LocalStorageModule'])
.controller('yourCtrl', [
'$scope',
'localStorageService',
function($scope, localStorageService) {
// Start fresh
localStorageService.clearAll();
localStorageService.add('Favorite Sport','Ultimate Frisbee');
}]);
/*
To set the prefix of your localStorage name, you can use the setPrefix method
available on the localStorageServiceProvider
*/
angular.module('yourModule', ['LocalStorageModule'])
.config(['localStorageServiceProvider', function(localStorageServiceProvider){
localStorageServiceProvider.setPrefix('newPrefix');
});
```
11 years ago
Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html