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
Markus Halttunen 69de00f350 Fixed a problem where you couldn't set a cookie after you had removed another one. The problem is that we shouldn't modify the expiry field of the shared cookie object. Now we simply set the expiry date of the removed cookie without touching the cookie object itself. 11 years ago
LICENSE Adding license 11 years ago
README.md Added a favourite sport just for fun 12 years ago
demo-app.js Cookies work as fallback 11 years ago
demo-style.css Added demo and fixed bugs 12 years ago
demo.html Cookies work as fallback 11 years ago
localStorageModule.js Fixed a problem where you couldn't set a cookie after you had removed another one. The problem is that we shouldn't modify the expiry field of the shared cookie object. Now we simply set the expiry date of the removed cookie without touching the cookie object itself. 11 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.appPrefix) in the settings at the beginning of localStorageModule.js.

To do:

  • Add tests
  • Expand Readme

Example use:

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

Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html