Updated documentation

revert-117-master
Gregory Pike 11 years ago
parent 5d3d56b43b
commit d182939877

@ -29,5 +29,13 @@ angular.module('yourModule', ['LocalStorageModule'])
localStorageService.clearAll(); localStorageService.clearAll();
localStorageService.add('Favorite Sport','Ultimate Frisbee'); 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');
});
``` ```
Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html