diff options
| author | Nick Palmer <nick@sluggardy.net> | 2010-12-07 17:16:18 -0500 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2010-12-07 17:16:18 -0500 |
| commit | 0271a5f58a9b44225e9e8208fc1b657cbeb9548f (patch) | |
| tree | 8c70c6846fb1c21233aa3ce8bd3f2bfc798ae656 | |
| parent | 41e69d2d7b8a82cfc3bfe9aeb03826cc8c4121ab (diff) | |
| parent | 9b6d595ac2be6a611f4275cd8dbbeed48131c709 (diff) | |
| download | util-0271a5f58a9b44225e9e8208fc1b657cbeb9548f.tar.gz util-0271a5f58a9b44225e9e8208fc1b657cbeb9548f.tar.bz2 util-0271a5f58a9b44225e9e8208fc1b657cbeb9548f.zip | |
Merge branch 'master' of http://github.com/bitweaver/util
| -rw-r--r-- | javascript/bitweaver.js | 3 | ||||
| m--------- | uniform | 0 |
2 files changed, 2 insertions, 1 deletions
diff --git a/javascript/bitweaver.js b/javascript/bitweaver.js index 259f6f8..5cb14e6 100644 --- a/javascript/bitweaver.js +++ b/javascript/bitweaver.js @@ -189,9 +189,10 @@ BitBase = { // [domain] (optional) = the domain of the cookie (must be same domain used when created) // NOTE: path and domain default if assigned null or omitted if no explicit argument proceeds "deleteCookie": function(name, path, domain) { + var self = BitBase; var cookie_path = (path) ? path : bitCookiePath; var cookie_domain = escape((domain) ? domain : bitCookieDomain); - if (getCookie(name)) { + if (self.getCookie(name)) { document.cookie = name + "=" + "; path=" + cookie_path + "; domain=" + cookie_domain + "; expires=Thu, 01-Jan-70 00:00:01 GMT"; } diff --git a/uniform b/uniform -Subproject 4f9555c2ab860ae0700e1e4ee298c8703f1e2da +Subproject d0b0747f394dac8b97ceda6541674f792762a2a |
