diff --git a/README.md b/README.md index 4cb9148..d95d2f9 100644 --- a/README.md +++ b/README.md @@ -29,5 +29,13 @@ angular.module('yourModule', ['LocalStorageModule']) 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'); +}); ``` Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html