-
Notifications
You must be signed in to change notification settings - Fork 585
Comparing changes
Open a pull request
base repository: grevory/angular-local-storage
base: v0.2.7
head repository: grevory/angular-local-storage
compare: v0.5.0
Commits on Mar 16, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 36b5dc0 - Browse repository at this point
Copy the full SHA 36b5dc0View commit details
Commits on Mar 30, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 38b159d - Browse repository at this point
Copy the full SHA 38b159dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c85ff2 - Browse repository at this point
Copy the full SHA 2c85ff2View commit details
Commits on Apr 4, 2016
-
Updated docs to indicate that cookie expiration = 0 => session cookie and not non-expiring cookie.
Configuration menu - View commit details
-
Copy full SHA for 2db6972 - Browse repository at this point
Copy the full SHA 2db6972View commit details -
Merge pull request #306 from robinj/patch-1
Update README.md for setStorageCookie
Configuration menu - View commit details
-
Copy full SHA for c18dc4f - Browse repository at this point
Copy the full SHA c18dc4fView commit details
Commits on Apr 29, 2016
-
Wrapped the code in a closure to avoid cluttering the global variable space.
Configuration menu - View commit details
-
Copy full SHA for f47a703 - Browse repository at this point
Copy the full SHA f47a703View commit details -
Added broadcast for localstorage changed
Added broadcast for localstorage changed, so changes from other windows/tabs can be detected an applied.
Configuration menu - View commit details
-
Copy full SHA for 6f5798a - Browse repository at this point
Copy the full SHA 6f5798aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bbc4e5 - Browse repository at this point
Copy the full SHA 7bbc4e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 531341f - Browse repository at this point
Copy the full SHA 531341fView commit details -
Configuration menu - View commit details
-
Copy full SHA for fce07dc - Browse repository at this point
Copy the full SHA fce07dcView commit details -
Fixed issue with undefined key in callback
Fixed issue with calling isKeyPrefixOurs before key was defined.
Configuration menu - View commit details
-
Copy full SHA for f2515cd - Browse repository at this point
Copy the full SHA f2515cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4e83bc - Browse repository at this point
Copy the full SHA e4e83bcView commit details
Commits on May 2, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 729794a - Browse repository at this point
Copy the full SHA 729794aView commit details -
Added tests for enabling defaultToCookie and tested wether you could …
…disable the configuration
Configuration menu - View commit details
-
Copy full SHA for 67d8075 - Browse repository at this point
Copy the full SHA 67d8075View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77a3f5f - Browse repository at this point
Copy the full SHA 77a3f5fView commit details -
Added tests to confirm defaultToCookie functionality. And added tests…
… for localStorageChanged event
Configuration menu - View commit details
-
Copy full SHA for 61ccc05 - Browse repository at this point
Copy the full SHA 61ccc05View commit details -
Configuration menu - View commit details
-
Copy full SHA for dacab66 - Browse repository at this point
Copy the full SHA dacab66View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b28d48 - Browse repository at this point
Copy the full SHA 0b28d48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 517cc4d - Browse repository at this point
Copy the full SHA 517cc4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3066957 - Browse repository at this point
Copy the full SHA 3066957View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd35cf1 - Browse repository at this point
Copy the full SHA cd35cf1View commit details -
Configuration menu - View commit details
-
Copy full SHA for dfd67aa - Browse repository at this point
Copy the full SHA dfd67aaView commit details
Commits on May 6, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 8041d62 - Browse repository at this point
Copy the full SHA 8041d62View commit details
Commits on May 15, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 9fe433a - Browse repository at this point
Copy the full SHA 9fe433aView commit details
Commits on May 18, 2016
-
Merge pull request #313 from Snede/master
Added features, "Changed" broadcast, disabling defaultToCookies, added closure
Configuration menu - View commit details
-
Copy full SHA for 09b27d6 - Browse repository at this point
Copy the full SHA 09b27d6View commit details -
Merge pull request #314 from jkjustjoshing/patch-1
Point to correct file for webpack require.
Configuration menu - View commit details
-
Copy full SHA for d0c6f1b - Browse repository at this point
Copy the full SHA d0c6f1bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 14ba833 - Browse repository at this point
Copy the full SHA 14ba833View commit details
Commits on Jul 13, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 0acda9f - Browse repository at this point
Copy the full SHA 0acda9fView commit details -
Merge pull request #1 from zpgu/zpgu-patch-1
switch/select type dynamically
Configuration menu - View commit details
-
Copy full SHA for 662dd06 - Browse repository at this point
Copy the full SHA 662dd06View commit details -
switch/select type dynamically
1) added setStorageType(type) 2) added type to relevant calls except removeFromLocalStorage(...), as it's a vararg variety, but easy to do if needed. This is a non-intrusive patch, as it preserves original functionality with minimal changes, but adds storage type selectability when needed. Typical use case: your existing code picked one type as default, but in a couple of places you need to use the other type, then try this: setStorageType(non-default-type); // switch to new type ...do your storage calls setStorageType(default-type); // restore default Or you can specify a type to each call directly (without type specified, will use whatever the last type active).
Configuration menu - View commit details
-
Copy full SHA for 8a1528d - Browse repository at this point
Copy the full SHA 8a1528dView commit details
Commits on Jul 14, 2016
-
removeFromLocalStorage() to take type param
removeFromLocalStorage() supports selecting storage type as the last parameter. not as optimized as I'd like for the patches, but they're non-invasive, and easy to reason for correctness. This completes the type selection patch (TODO: need to add tests).
Configuration menu - View commit details
-
Copy full SHA for 575716b - Browse repository at this point
Copy the full SHA 575716bView commit details -
Merge pull request #2 from zpgu/zpgu-patch-2
removeFromLocalStorage() to take type param
Configuration menu - View commit details
-
Copy full SHA for a4d41a9 - Browse repository at this point
Copy the full SHA a4d41a9View commit details -
zpg committed
Jul 14, 2016 Configuration menu - View commit details
-
Copy full SHA for 1767e6a - Browse repository at this point
Copy the full SHA 1767e6aView commit details -
switch type only when different
zpg committedJul 14, 2016 Configuration menu - View commit details
-
Copy full SHA for fad1093 - Browse repository at this point
Copy the full SHA fad1093View commit details -
zpg committed
Jul 14, 2016 Configuration menu - View commit details
-
Copy full SHA for 52972f2 - Browse repository at this point
Copy the full SHA 52972f2View commit details -
zpg committed
Jul 14, 2016 Configuration menu - View commit details
-
Copy full SHA for 106eb41 - Browse repository at this point
Copy the full SHA 106eb41View commit details
Commits on Jul 29, 2016
-
Merge pull request #320 from zpgu/master
switch/select type dynamically
Configuration menu - View commit details
-
Copy full SHA for 482c6c1 - Browse repository at this point
Copy the full SHA 482c6c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1437b63 - Browse repository at this point
Copy the full SHA 1437b63View commit details -
Configuration menu - View commit details
-
Copy full SHA for 459456e - Browse repository at this point
Copy the full SHA 459456eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1a77a5 - Browse repository at this point
Copy the full SHA d1a77a5View commit details
Commits on Aug 10, 2016
-
Add 'secure' argument to setStorageCookie method
Add a 3rd argument named 'secure' to the setStorageCookie method to allow users to opt-in to only use the cookie on a secure origin.
Configuration menu - View commit details
-
Copy full SHA for 6deab95 - Browse repository at this point
Copy the full SHA 6deab95View commit details
Commits on Aug 18, 2016
-
Merge pull request #283 from ry8806/master
added function parameter for secure cookies, added test, added api ex…
Configuration menu - View commit details
-
Copy full SHA for 1a9ff2a - Browse repository at this point
Copy the full SHA 1a9ff2aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad8841b - Browse repository at this point
Copy the full SHA ad8841bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f5846f - Browse repository at this point
Copy the full SHA 5f5846fView commit details
Commits on Aug 26, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 44e52a9 - Browse repository at this point
Copy the full SHA 44e52a9View commit details -
Merge pull request #324 from loftyduck/master
prevent memory leak by removing listeners on the window
Configuration menu - View commit details
-
Copy full SHA for 4640501 - Browse repository at this point
Copy the full SHA 4640501View commit details
Commits on Aug 29, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a2baadb - Browse repository at this point
Copy the full SHA a2baadbView commit details
There are no files selected for viewing