X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=docs%2Fsrc%2FRoo_util_JSON.js.html;fp=docs%2Fsrc%2FRoo_util_JSON.js.html;h=e6f8af62242afac285829d82c57d74c5d9be3e66;hb=5a350de375484ef6c915706aab23d36143a588a0;hp=c2cae33bccb2232f5e8745b2a7e52b862f672bd4;hpb=1685a3ae21637dcfc4ade4f87c82f490d616ef1d;p=roojs1 diff --git a/docs/src/Roo_util_JSON.js.html b/docs/src/Roo_util_JSON.js.html index c2cae33bcc..e6f8af6224 100644 --- a/docs/src/Roo_util_JSON.js.html +++ b/docs/src/Roo_util_JSON.js.html @@ -83,6 +83,7 @@ /** * Encodes an Object, Array or other value + * @static * @param {Mixed} o The variable to encode * @return {String} The JSON string */ @@ -129,6 +130,7 @@ /** * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError. + * @static * @param {String} json The JSON string * @return {Object} The resulting object */ @@ -139,11 +141,13 @@ })(); /** * Shorthand for {@link Roo.util.JSON#encode} - * @member Roo encode + * @member Roo encode + * @static * @method */ Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode; /** * Shorthand for {@link Roo.util.JSON#decode} + * @static * @member Roo decode * @method */ Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;