X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/source/Cookies.html diff --git a/docs/source/Cookies.html b/docs/source/Cookies.html index 4df5f2b7..284f9d61 100644 --- a/docs/source/Cookies.html +++ b/docs/source/Cookies.html @@ -1,5 +1,6 @@ + The source code @@ -15,8 +16,8 @@ Ext.util.Cookies = { * Create a cookie with the specified name and value. Additional settings * for the cookie may be optionally specified (for example: expiration, * access restriction, SSL). - * @param {Object} name - * @param {Object} value + * @param {String} name The name of the cookie to set. + * @param {Mixed} value The value to set for the cookie. * @param {Object} expires (Optional) Specify an expiration date the * cookie is to persist until. Note that the specified Date object will * be converted to Greenwich Mean Time (GMT). @@ -51,7 +52,7 @@ Ext.util.Cookies = { *

      * var validStatus = Ext.util.Cookies.get("valid");
      * 
- * @param {Object} name The name of the cookie to get + * @param {String} name The name of the cookie to get * @return {Mixed} Returns the cookie value for the specified name; * null if the cookie name does not exist. */ @@ -76,8 +77,8 @@ Ext.util.Cookies = {
/** * Removes a cookie with the provided name from the browser - * if found. - * @param {Object} name The name of the cookie to remove + * if found by setting its expiration date to sometime in the past. + * @param {String} name The name of the cookie to remove */ clear : function(name){ if(Ext.util.Cookies.get(name)){