An AngularJS module that gives you access to the browsers local storage with cookie fallback
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.
 
Go to file
grevory f3f82b5d3b Merge pull request #1 from maxrabin/readme-fixup
Code example fixup in README.md
12 years ago
README.md Javascript syntax highlighting 12 years ago
localStorageModule.js Initial commit 12 years ago

README.md

angular-local-storage

An Angular module that gives you access to the browsers local storage

Remember to set your app name (settings.appName) in the settings at the beginning of localStorageModule.js.

To do:

  • Make appName available to Angular for manipulation
  • Set cookies as a failback for browsers that do not support local storage

Example use:

angular.module('yourModule', ['LocalStorageModule'])
.controller('yourCtrl', [
  '$scope',
  'localStorageService',
  function($scope, localStorageService) {
    // Start fresh
    localStorageService.clearAll();
    localStorageService.add('Favorite Sport','value');
}]);