summaryrefslogtreecommitdiff
path: root/share/www/script
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script')
-rw-r--r--share/www/script/browse.js1
-rw-r--r--share/www/script/jquery.cookies.js19
2 files changed, 11 insertions, 9 deletions
diff --git a/share/www/script/browse.js b/share/www/script/browse.js
index 82f9eeff..6abcb073 100644
--- a/share/www/script/browse.js
+++ b/share/www/script/browse.js
@@ -26,7 +26,6 @@ function CouchIndexPage() {
$.couch.db(data.name).create({
error: function(status, id, reason) { callback({name: reason}) },
success: function(resp) {
- if (window !== parent) parent.setTimeout("updateDatabaseList()", 500);
location.href = "database.html?" + encodeURIComponent(data.name);
callback();
}
diff --git a/share/www/script/jquery.cookies.js b/share/www/script/jquery.cookies.js
index a2817461..77c5e0a9 100644
--- a/share/www/script/jquery.cookies.js
+++ b/share/www/script/jquery.cookies.js
@@ -15,7 +15,7 @@
$.fn.extend($.cookies, {
/* Return the value of a cookie. */
- get: function(name) {
+ get: function(name, defaultValue) {
var nameEq = name + "=";
var parts = document.cookie.split(';');
for (var i = 0; i < parts.length; i++) {
@@ -24,23 +24,26 @@
return unescape(part.substring(nameEq.length, part.length));
}
}
- return null;
+ return defaultValue !== undefined ? defaultValue : null;
},
/* Create or update a cookie. */
- set: function(name, value, days) {
- var expires = "";
+ set: function(name, value, path, days) {
+ var params = [];
+ if (path) {
+ params.push("; path=" + path);
+ }
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24*60*60*1000));
- expires = "; expires=" + date.toGMTString();
+ params.push("; expires=" + date.toGMTString());
}
- document.cookie = name + "=" + escape(value) + expires;
+ document.cookie = name + "=" + escape(value) + params.join();
},
/* Remove a cookie. */
- remove: function(name) {
- $.cookies.set(name, "", -1);
+ remove: function(name, path) {
+ $.cookies.set(name, "", path, -1);
}
});