angularLocalStorage
angularLocalStorage copied to clipboard
The simplest angular localStorage implementation you will ever use.
I am using storage in my controller as `storage.bind(this, 'counter', {defaultValue: 5});` I am getting below error in the browser console when running my angular app. > TypeError: $scope.$eval is...
@agrublev or @CamaroSS, could you release the new version to bower?
Hi! I was curious if you might consider unregistering the bower package called "ngStorage"? It currently installs this package. But your readme indicates you have a new name for this...
For the public get(), set() and remove() methods, if supported == false and any type of exception occurs, the code specific to localStorage will attempt to run, even though supported...
https://github.com/agrublev/angularLocalStorage/blob/a22fb26fa354d45f540f7af0c454bafe7150a05c/src/angularLocalStorage.js#L103 does not show up in the README albeit being a public method.
I've got angular 1.3.15 and I can't install your script:/
https://docs.angularjs.org/api/ngCookies/service/$cookieStore > Note: The $cookieStore service is deprecated. Please use the $cookies service instead. For now, I will use $cookieStore, too (requirement from my agent). Please update the lib in...
if localstorage bound object is used in ngRepeat, then the object will be persisted to localstorage with $$hashkey, potentially causing the aforementioned error. this can either be addressed by using...
``` app.controller('CreateCtrl', function ($scope) { $scope.create = {a:1, b:2, c:3}; $scope.send = function () { $scope.$emit('send', angular.copy($scope.create)); } }); app.controller('ListCtrl', function ($scope, $rootScope) { $scope.list = []; $rootScope.$on('send', function (e,...
the factory works as expected, but when I use the grunt --save, the vendor.js file that is created with all the vendors library raise an error. Any idea?