Navigation Menu

Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
voronianski committed May 3, 2015
1 parent b5c5aa5 commit ff4a1fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .eslintrc
Expand Up @@ -3,6 +3,7 @@
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"rules": {
"strict": 0,
Expand All @@ -11,6 +12,7 @@
"no-unused-vars": 1,
"no-unused-expressions": 0,
"new-cap": 0,
"no-multi-spaces": 0
"no-multi-spaces": 0,
"no-empty": 0
}
}
4 changes: 3 additions & 1 deletion ngKookies.js
Expand Up @@ -53,7 +53,9 @@
// replace server-side written pluses with spaces.
s = decodeURIComponent(s.replace(/\+/g, ' '));
return config.json ? angular.fromJson(s) : s;
} catch(e) {}
} catch(e) {
// do nothing
}
};

privateMethods.stringifyCookie = function (value) {
Expand Down
4 changes: 2 additions & 2 deletions ngKookies.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ff4a1fe

Please sign in to comment.