From 9d539cad94fe4bd210baa98433c6189b86f25435 Mon Sep 17 00:00:00 2001 From: "Eddie Monge Jr." Date: Wed, 25 Sep 2013 10:45:03 -0700 Subject: [PATCH] Update README.md add instructions for setting prefix --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 29b3038..4cb9148 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,15 @@ angular-local-storage 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. +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) { + .... +}); +``` To do: - Add tests