Skip to content

Commit ae0c28a

Browse files
committed
build(*): v0.1.5
1 parent 6ae576d commit ae0c28a

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-local-storage",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"homepage": "http://gregpike.net/demos/angular-local-storage/demo.html",
55
"authors": [
66
"grevory <[email protected]>"

dist/angular-local-storage.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* An Angular module that gives you access to the browsers local storage
3-
* @version v0.1.4 - 2014-10-30
3+
* @version v0.1.5 - 2014-11-04
44
* @link https://github.com/grevory/angular-local-storage
55
* @author grevory <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -57,11 +57,13 @@ angularLocalStorage.provider('localStorageService', function() {
5757
// Setter for the prefix
5858
this.setPrefix = function(prefix) {
5959
this.prefix = prefix;
60+
return this;
6061
};
6162

6263
// Setter for the storageType
6364
this.setStorageType = function(storageType) {
64-
this.storageType = storageType;
65+
this.storageType = storageType;
66+
return this;
6567
};
6668

6769
// Setter for cookie config
@@ -70,11 +72,13 @@ angularLocalStorage.provider('localStorageService', function() {
7072
expiry: exp,
7173
path: path
7274
};
75+
return this;
7376
};
7477

7578
// Setter for cookie domain
7679
this.setStorageCookieDomain = function(domain) {
7780
this.cookie.domain = domain;
81+
return this;
7882
};
7983

8084
// Setter for notification config
@@ -84,6 +88,7 @@ angularLocalStorage.provider('localStorageService', function() {
8488
setItem: itemSet,
8589
removeItem: itemRemove
8690
};
91+
return this;
8792
};
8893

8994
this.$get = ['$rootScope', '$window', '$document', '$parse', function($rootScope, $window, $document, $parse) {

dist/angular-local-storage.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-local-storage",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "An Angular module that gives you access to the browsers local storage",
55
"homepage": "https://github.com/grevory/angular-local-storage",
66
"main": "./dist/angular-local-storage.js",

0 commit comments

Comments
 (0)