diff options
| author | Tyler Kellogg | 2014-03-16 16:53:00 -0700 | 
|---|---|---|
| committer | Igor Minar | 2014-03-17 16:29:10 -0700 | 
| commit | a4b70cfd7165a0bdad4834b773057ed051de757b (patch) | |
| tree | aea15109a22ab044272d47a6e2fdfbcf64540d48 | |
| parent | c9fbb472b7b798853a8ea48dae6f85dfbc51b8c4 (diff) | |
| download | angular.js-a4b70cfd7165a0bdad4834b773057ed051de757b.tar.bz2 | |
docs($cookies): cookies serializer only supports strings
Closes #6705
| -rw-r--r-- | src/ngCookies/cookies.js | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/ngCookies/cookies.js b/src/ngCookies/cookies.js index b78fcd5a..ccfae23b 100644 --- a/src/ngCookies/cookies.js +++ b/src/ngCookies/cookies.js @@ -25,8 +25,9 @@ angular.module('ngCookies', ['ng']).     * @description     * Provides read/write access to browser's cookies.     * -   * Only a simple Object is exposed and by adding or removing properties to/from -   * this object, new cookies are created/deleted at the end of current $eval. +   * Only a simple Object is exposed and by adding or removing properties to/from this object, new +   * cookies are created/deleted at the end of current $eval. +   * The object's properties can only be strings.     *     * Requires the {@link ngCookies `ngCookies`} module to be installed.     * | 
