X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/Cookies.html diff --git a/docs/source/Cookies.html b/docs/source/Cookies.html index 4df5f2b7..330c7c68 100644 --- a/docs/source/Cookies.html +++ b/docs/source/Cookies.html @@ -1,11 +1,17 @@ - - - The source code - - - - -
/** + + + The source code + + + + +
/*!
+ * Ext JS Library 3.0.3
+ * Copyright(c) 2006-2009 Ext JS, LLC
+ * licensing@extjs.com
+ * http://www.extjs.com/license
+ */
+
/** * @class Ext.util.Cookies * Utility class for managing and interacting with cookies. * @singleton @@ -15,8 +21,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 +57,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 +82,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)){ @@ -94,6 +100,6 @@ Ext.util.Cookies = { } return unescape(document.cookie.substring(offset, endstr)); } -};
- +};
+ \ No newline at end of file