From d182939877cea6dd0ce4dce5ecd5dc2494a857f2 Mon Sep 17 00:00:00 2001 From: Gregory Pike Date: Thu, 26 Dec 2013 22:51:47 -0500 Subject: [PATCH] Updated documentation --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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