aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChirayu Krishnappa2013-05-10 19:17:56 -0700
committerChirayu Krishnappa2013-05-11 09:28:14 -0700
commit9145d5ec3e17ee1e23eda3fb1875c928c1d8f069 (patch)
tree34e26f61a2590e8efe157aded46bb7f01db17ef5 /src
parentefc863844c74623cf75b35efd7957366b6350e1d (diff)
downloadangular.js-9145d5ec3e17ee1e23eda3fb1875c928c1d8f069.tar.bz2
fix($browser): should use first value for a cookie.
With this change, $browser.cookies()["foo"] will behave like docCookies.getItem("foo") where docCookies is defined at https://developer.mozilla.org/en-US/docs/DOM/document.cookie This fixes the issue where, if there's a value for the XSRF-TOKEN cookie value with the path /, then that value is used for all applications in the domain even if they set path specific values for XSRF-TOKEN. Closes #2635
Diffstat (limited to 'src')
-rw-r--r--src/ng/browser.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ng/browser.js b/src/ng/browser.js
index fa050d54..a723271b 100644
--- a/src/ng/browser.js
+++ b/src/ng/browser.js
@@ -297,7 +297,13 @@ function Browser(window, document, $log, $sniffer) {
cookie = cookieArray[i];
index = cookie.indexOf('=');
if (index > 0) { //ignore nameless cookies
- lastCookies[unescape(cookie.substring(0, index))] = unescape(cookie.substring(index + 1));
+ var name = unescape(cookie.substring(0, index));
+ // the first value that is seen for a cookie is the most
+ // specific one. values for the same cookie name that
+ // follow are for less specific paths.
+ if (lastCookies[name] === undefined) {
+ lastCookies[name] = unescape(cookie.substring(index + 1));
+ }
}
}
}