Running Normal [ { "comment": "/**\n * @fileOverview Defines the base Drupal JavaScript object.\n */", "meta": { "lineno": 1, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": {} }, "name": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/drupal.js", "kind": "file", "description": "Defines the base Drupal JavaScript object.", "preserveName": true, "longname": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/drupal.js" }, { "comment": "/**\n * Holds settings for Drupal.\n * @namespace\n * @name Drupal.settings\n */", "meta": { "lineno": 11, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": {} }, "description": "Holds settings for Drupal.", "kind": "namespace", "name": "settings", "memberof": "Drupal", "longname": "Drupal.settings", "scope": "static" }, { "comment": "/**\n * Holds behaviors for Drupal.\n * @namespace\n * @name Drupal.behaviors\n */", "meta": { "lineno": 18, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": {} }, "description": "Holds behaviors for Drupal.", "kind": "namespace", "name": "behaviors", "memberof": "Drupal", "longname": "Drupal.behaviors", "scope": "static" }, { "comment": "/**\n * Holds locale information for Drupal.\n * @namespace\n * @name Drupal.locale\n */", "meta": { "lineno": 25, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": {} }, "description": "Holds locale information for Drupal.", "kind": "namespace", "name": "locale", "memberof": "Drupal", "longname": "Drupal.locale", "scope": "static" }, { "comment": "/**\n * Holds JavaScript settings and other information for Drupal.\n *\n * @namespace\n */", "meta": { "lineno": 10, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode815578443", "name": "Drupal", "type": "OR", "value": "OR" } }, "description": "Holds JavaScript settings and other information for Drupal.", "kind": "namespace", "name": "Drupal", "longname": "Drupal", "scope": "global" }, { "comment": "", "meta": { "lineno": 16, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode363524275", "name": "settings", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "settings", "kind": "member", "longname": "settings", "scope": "global" }, { "comment": "", "meta": { "lineno": 23, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1473444918", "name": "behaviors", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "behaviors", "kind": "member", "longname": "behaviors", "scope": "global" }, { "comment": "", "meta": { "lineno": 30, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode997525387", "name": "locale", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "locale", "kind": "member", "longname": "locale", "scope": "global" }, { "comment": "/**\n * Attach all registered behaviors to a page element.\n *\n * Behaviors are event-triggered actions that attach to page elements, enhancing\n * default non-JavaScript UIs. Behaviors are registered in the Drupal.behaviors\n * object using the method 'attach' and optionally also 'detach' as follows:\n * @code\n * Drupal.behaviors.behaviorName = {\n * attach: function (context, settings) {\n * ...\n * },\n * detach: function (context, settings, trigger) {\n * ...\n * }\n * };\n * @endcode\n *\n * Drupal.attachBehaviors is added below to the jQuery.ready event and therefore\n * runs on initial page load. Developers implementing Ajax in their solutions\n * should also call this function after new page content has been loaded,\n * feeding in an element to be processed, in order to attach all behaviors to\n * the new content.\n *\n * Behaviors should use\n * @code\n * var elements = $(context).find(selector).once('behavior-name');\n * @endcode\n * to ensure the behavior is attached only once to a given element. (Doing so\n * enables the reprocessing of given elements, which may be needed on occasion\n * despite the ability to limit behavior attachment to a particular element.)\n *\n * @param context\n * An element to attach behaviors to. If none is given, the document element\n * is used.\n * @param settings\n * An object containing settings for the current context. If none is given,\n * the global Drupal.settings object is used.\n */", "meta": { "lineno": 80, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode511307135", "name": "Drupal.attachBehaviors", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "context", "settings" ] }, "vars": { "i": false, "behaviors": false } }, "description": "Attach all registered behaviors to a page element.\n\nBehaviors are event-triggered actions that attach to page elements, enhancing\ndefault non-JavaScript UIs. Behaviors are registered in the Drupal.behaviors\nobject using the method 'attach' and optionally also 'detach' as follows:", "tags": [ { "originalTitle": "code", "title": "code", "text": "Drupal.behaviors.behaviorName = {\n attach: function (context, settings) {\n ...\n },\n detach: function (context, settings, trigger) {\n ...\n }\n };", "value": "Drupal.behaviors.behaviorName = {\n attach: function (context, settings) {\n ...\n },\n detach: function (context, settings, trigger) {\n ...\n }\n };" }, { "originalTitle": "endcode", "title": "endcode", "text": "Drupal.attachBehaviors is added below to the jQuery.ready event and therefore\nruns on initial page load. Developers implementing Ajax in their solutions\nshould also call this function after new page content has been loaded,\nfeeding in an element to be processed, in order to attach all behaviors to\nthe new content.\n\nBehaviors should use", "value": "Drupal.attachBehaviors is added below to the jQuery.ready event and therefore\nruns on initial page load. Developers implementing Ajax in their solutions\nshould also call this function after new page content has been loaded,\nfeeding in an element to be processed, in order to attach all behaviors to\nthe new content.\n\nBehaviors should use" }, { "originalTitle": "code", "title": "code", "text": "var elements = $(context).find(selector).once('behavior-name');", "value": "var elements = $(context).find(selector).once('behavior-name');" }, { "originalTitle": "endcode", "title": "endcode", "text": "to ensure the behavior is attached only once to a given element. (Doing so\nenables the reprocessing of given elements, which may be needed on occasion\ndespite the ability to limit behavior attachment to a particular element.)", "value": "to ensure the behavior is attached only once to a given element. (Doing so\nenables the reprocessing of given elements, which may be needed on occasion\ndespite the ability to limit behavior attachment to a particular element.)" } ], "params": [ { "name": "context", "description": "An element to attach behaviors to. If none is given, the document element\n is used." }, { "name": "settings", "description": "An object containing settings for the current context. If none is given,\n the global Drupal.settings object is used." } ], "name": "attachBehaviors", "kind": "function", "memberof": "Drupal", "longname": "Drupal.attachBehaviors", "scope": "static" }, { "comment": "", "meta": { "lineno": 81, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1681653767", "name": "context", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "context", "kind": "member", "longname": "context", "scope": "global" }, { "comment": "", "meta": { "lineno": 82, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode869724450", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "longname": "settings", "scope": "global" }, { "comment": "", "meta": { "lineno": 83, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode565106169", "name": "i", "type": "undefined", "value": "i" } }, "undocumented": true, "name": "i", "kind": "member", "memberof": "Drupal.attachBehaviors", "longname": "Drupal.attachBehaviors~i", "scope": "inner" }, { "comment": "", "meta": { "lineno": 83, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1151734776", "name": "behaviors", "type": "GETPROP", "value": "Drupal.behaviors" } }, "undocumented": true, "name": "behaviors", "kind": "member", "memberof": "Drupal.attachBehaviors", "longname": "Drupal.attachBehaviors~behaviors", "scope": "inner" }, { "comment": "/**\n * Detach registered behaviors from a page element.\n *\n * Developers implementing AHAH/Ajax in their solutions should call this\n * function before page content is about to be removed, feeding in an element\n * to be processed, in order to allow special behaviors to detach from the\n * content.\n *\n * Such implementations should look for the class name that was added in their\n * corresponding Drupal.behaviors.behaviorName.attach implementation, i.e.\n * behaviorName-processed, to ensure the behavior is detached only from\n * previously processed elements.\n *\n * @param context\n * An element to detach behaviors from. If none is given, the document element\n * is used.\n * @param settings\n * An object containing settings for the current context. If none given, the\n * global Drupal.settings object is used.\n * @param trigger\n * A string containing what's causing the behaviors to be detached. The\n * possible triggers are:\n * - unload: (default) The context element is being removed from the DOM.\n * - move: The element is about to be moved within the DOM (for example,\n * during a tabledrag row swap). After the move is completed,\n * Drupal.attachBehaviors() is called, so that the behavior can undo\n * whatever it did in response to the move. Many behaviors won't need to\n * do anything simply in response to the element being moved, but because\n * IFRAME elements reload their \"src\" when being moved within the DOM,\n * behaviors bound to IFRAME elements (like WYSIWYG editors) may need to\n * take some action.\n * - serialize: When an Ajax form is submitted, this is called with the\n * form as the context. This provides every behavior within the form an\n * opportunity to ensure that the field elements have correct content\n * in them before the form is serialized. The canonical use-case is so\n * that WYSIWYG editors can update the hidden textarea to which they are\n * bound.\n *\n * @see Drupal.attachBehaviors\n */", "meta": { "lineno": 132, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode290340673", "name": "Drupal.detachBehaviors", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "context", "settings", "trigger" ] }, "vars": { "i": false, "behaviors": false } }, "description": "Detach registered behaviors from a page element.\n\nDevelopers implementing AHAH/Ajax in their solutions should call this\nfunction before page content is about to be removed, feeding in an element\nto be processed, in order to allow special behaviors to detach from the\ncontent.\n\nSuch implementations should look for the class name that was added in their\ncorresponding Drupal.behaviors.behaviorName.attach implementation, i.e.\nbehaviorName-processed, to ensure the behavior is detached only from\npreviously processed elements.", "params": [ { "name": "context", "description": "An element to detach behaviors from. If none is given, the document element\n is used." }, { "name": "settings", "description": "An object containing settings for the current context. If none given, the\n global Drupal.settings object is used." }, { "name": "trigger", "description": "A string containing what's causing the behaviors to be detached. The\n possible triggers are:\n - unload: (default) The context element is being removed from the DOM.\n - move: The element is about to be moved within the DOM (for example,\n during a tabledrag row swap). After the move is completed,\n Drupal.attachBehaviors() is called, so that the behavior can undo\n whatever it did in response to the move. Many behaviors won't need to\n do anything simply in response to the element being moved, but because\n IFRAME elements reload their \"src\" when being moved within the DOM,\n behaviors bound to IFRAME elements (like WYSIWYG editors) may need to\n take some action.\n - serialize: When an Ajax form is submitted, this is called with the\n form as the context. This provides every behavior within the form an\n opportunity to ensure that the field elements have correct content\n in them before the form is serialized. The canonical use-case is so\n that WYSIWYG editors can update the hidden textarea to which they are\n bound." } ], "see": [ "Drupal.attachBehaviors" ], "name": "detachBehaviors", "kind": "function", "memberof": "Drupal", "longname": "Drupal.detachBehaviors", "scope": "static" }, { "comment": "", "meta": { "lineno": 133, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode591210723", "name": "context", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "context", "kind": "member", "longname": "context", "scope": "global" }, { "comment": "", "meta": { "lineno": 134, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode169456094", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "longname": "settings", "scope": "global" }, { "comment": "", "meta": { "lineno": 135, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1084010740", "name": "trigger", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "trigger", "kind": "member", "longname": "trigger", "scope": "global" }, { "comment": "", "meta": { "lineno": 136, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode989080272", "name": "i", "type": "undefined", "value": "i" } }, "undocumented": true, "name": "i", "kind": "member", "memberof": "Drupal.detachBehaviors", "longname": "Drupal.detachBehaviors~i", "scope": "inner" }, { "comment": "", "meta": { "lineno": 136, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1291305757", "name": "behaviors", "type": "GETPROP", "value": "Drupal.behaviors" } }, "undocumented": true, "name": "behaviors", "kind": "member", "memberof": "Drupal.detachBehaviors", "longname": "Drupal.detachBehaviors~behaviors", "scope": "inner" }, { "comment": "/**\n * Encode special characters in a plain-text string for display as HTML.\n *\n * @param str\n * The string to be encoded.\n * @return\n * The encoded string.\n * @ingroup sanitization\n */", "meta": { "lineno": 154, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode198249052", "name": "Drupal.checkPlain", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "str" ] } }, "description": "Encode special characters in a plain-text string for display as HTML.", "params": [ { "name": "str", "description": "The string to be encoded." } ], "returns": [ { "description": "The encoded string." } ], "tags": [ { "originalTitle": "ingroup", "title": "ingroup", "text": "sanitization", "value": "sanitization" } ], "name": "checkPlain", "kind": "function", "memberof": "Drupal", "longname": "Drupal.checkPlain", "scope": "static" }, { "comment": "", "meta": { "lineno": 155, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode249613347", "name": "str", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "str", "kind": "member", "longname": "str", "scope": "global" }, { "comment": "/**\n * Replace placeholders with sanitized values in a string.\n *\n * @param str\n * A string with placeholders.\n * @param args\n * An object of replacements pairs to make. Incidences of any key in this\n * array are replaced with the corresponding value. Based on the first\n * character of the key, the value is escaped and/or themed:\n * - !variable: inserted as is\n * - @variable: escape plain text to HTML (Drupal.checkPlain)\n * - %variable: escape text and theme as a placeholder for user-submitted\n * content (checkPlain + Drupal.theme('placeholder'))\n *\n * @see Drupal.t()\n * @ingroup sanitization\n */", "meta": { "lineno": 180, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode649388699", "name": "Drupal.formatString", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "str", "args" ] }, "vars": { "key": false } }, "description": "Replace placeholders with sanitized values in a string.", "params": [ { "name": "str", "description": "A string with placeholders." }, { "name": "args", "description": "An object of replacements pairs to make. Incidences of any key in this\n array are replaced with the corresponding value. Based on the first\n character of the key, the value is escaped and/or themed:\n - !variable: inserted as is\n - @variable: escape plain text to HTML (Drupal.checkPlain)\n - %variable: escape text and theme as a placeholder for user-submitted\n content (checkPlain + Drupal.theme('placeholder'))" } ], "see": [ "Drupal.t()" ], "tags": [ { "originalTitle": "ingroup", "title": "ingroup", "text": "sanitization", "value": "sanitization" } ], "name": "formatString", "kind": "function", "memberof": "Drupal", "longname": "Drupal.formatString", "scope": "static" }, { "comment": "", "meta": { "lineno": 182, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode295726648", "name": "key", "type": "undefined", "value": "key" } }, "undocumented": true, "name": "key", "kind": "member", "memberof": "Drupal.formatString", "longname": "Drupal.formatString~key", "scope": "inner" }, { "comment": "", "meta": { "lineno": 187, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode354199555", "name": "args[key]", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "args[key]", "kind": "member", "longname": "args[key]", "scope": "global" }, { "comment": "", "meta": { "lineno": 195, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode275558166", "name": "args[key]", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "args[key]", "kind": "member", "longname": "args[key]", "scope": "global" }, { "comment": "", "meta": { "lineno": 198, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1726367366", "name": "str", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "str", "kind": "member", "longname": "str", "scope": "global" }, { "comment": "/**\n * Translate strings to the page language or a given language.\n *\n * See the documentation of the server-side t() function for further details.\n *\n * @param str\n * A string containing the English string to translate.\n * @param args\n * An object of replacements pairs to make after translation. Incidences\n * of any key in this array are replaced with the corresponding value.\n * See Drupal.formatString().\n *\n * @param options\n * - 'context' (defaults to the empty context): The context the source string\n * belongs to.\n *\n * @return\n * The translated string.\n */", "meta": { "lineno": 223, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1746807975", "name": "Drupal.t", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "str", "args", "options" ] } }, "description": "Translate strings to the page language or a given language.\n\nSee the documentation of the server-side t() function for further details.", "params": [ { "name": "str", "description": "A string containing the English string to translate." }, { "name": "args", "description": "An object of replacements pairs to make after translation. Incidences\n of any key in this array are replaced with the corresponding value.\n See Drupal.formatString()." }, { "name": "options", "description": "'context' (defaults to the empty context): The context the source string\n belongs to." } ], "returns": [ { "description": "The translated string." } ], "name": "t", "kind": "function", "memberof": "Drupal", "longname": "Drupal.t", "scope": "static" }, { "comment": "", "meta": { "lineno": 224, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode279807577", "name": "options", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "options", "kind": "member", "longname": "options", "scope": "global" }, { "comment": "", "meta": { "lineno": 225, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode798212303", "name": "options.context", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "context", "kind": "member", "memberof": "options", "longname": "options.context", "scope": "static" }, { "comment": "", "meta": { "lineno": 229, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode833984911", "name": "str", "type": "GETELEM", "value": "Drupal.locale.strings[options.context][str]" } }, "undocumented": true, "name": "str", "kind": "member", "longname": "str", "scope": "global" }, { "comment": "", "meta": { "lineno": 233, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode820233764", "name": "str", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "str", "kind": "member", "longname": "str", "scope": "global" }, { "comment": "/**\n * Returns the URL to a Drupal page.\n */", "meta": { "lineno": 241, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1121984713", "name": "Drupal.url", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "path" ] } }, "description": "Returns the URL to a Drupal page.", "name": "url", "kind": "function", "memberof": "Drupal", "longname": "Drupal.url", "scope": "static" }, { "comment": "/**\n * Format a string containing a count of items.\n *\n * This function ensures that the string is pluralized correctly. Since Drupal.t() is\n * called by this function, make sure not to pass already-localized strings to it.\n *\n * See the documentation of the server-side format_plural() function for further details.\n *\n * @param count\n * The item count to display.\n * @param singular\n * The string for the singular case. Please make sure it is clear this is\n * singular, to ease translation (e.g. use \"1 new comment\" instead of \"1 new\").\n * Do not use @count in the singular string.\n * @param plural\n * The string for the plural case. Please make sure it is clear this is plural,\n * to ease translation. Use @count in place of the item count, as in \"@count\n * new comments\".\n * @param args\n * An object of replacements pairs to make after translation. Incidences\n * of any key in this array are replaced with the corresponding value.\n * See Drupal.formatString().\n * Note that you do not need to include @count in this array.\n * This replacement is done automatically for the plural case.\n * @param options\n * The options to pass to the Drupal.t() function.\n * @return\n * A translated string.\n */", "meta": { "lineno": 274, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode475893892", "name": "Drupal.formatPlural", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "count", "singular", "plural", "args", "options" ] }, "vars": { "index": false } }, "description": "Format a string containing a count of items.\n\nThis function ensures that the string is pluralized correctly. Since Drupal.t() is\ncalled by this function, make sure not to pass already-localized strings to it.\n\nSee the documentation of the server-side format_plural() function for further details.", "params": [ { "name": "count", "description": "The item count to display." }, { "name": "singular", "description": "The string for the singular case. Please make sure it is clear this is\n singular, to ease translation (e.g. use \"1 new comment\" instead of \"1 new\").\n Do not use @count in the singular string." }, { "name": "plural", "description": "The string for the plural case. Please make sure it is clear this is plural,\n to ease translation. Use @count in place of the item count, as in \"@count\n new comments\"." }, { "name": "args", "description": "An object of replacements pairs to make after translation. Incidences\n of any key in this array are replaced with the corresponding value.\n See Drupal.formatString().\n Note that you do not need to include @count in this array.\n This replacement is done automatically for the plural case." }, { "name": "options", "description": "The options to pass to the Drupal.t() function." } ], "returns": [ { "description": "A translated string." } ], "name": "formatPlural", "kind": "function", "memberof": "Drupal", "longname": "Drupal.formatPlural", "scope": "static" }, { "comment": "", "meta": { "lineno": 275, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1278414937", "name": "args", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "args", "kind": "member", "longname": "args", "scope": "global" }, { "comment": "", "meta": { "lineno": 276, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode796347291", "name": "args['@count']", "type": "NAME", "value": "count" } }, "undocumented": true, "name": "args['@count']", "kind": "member", "longname": "args['@count']", "scope": "global" }, { "comment": "", "meta": { "lineno": 278, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode158981348", "name": "index", "type": "HOOK", "value": "HOOK" } }, "undocumented": true, "name": "index", "kind": "member", "memberof": "Drupal.formatPlural", "longname": "Drupal.formatPlural~index", "scope": "inner" }, { "comment": "", "meta": { "lineno": 287, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1457155060", "name": "args['@count[' + index + ']']", "type": "GETELEM", "value": "args['@count']" } }, "undocumented": true, "name": "args['@count[' + index + ']']", "kind": "member", "longname": "args['@count[' + index + ']']", "scope": "global" }, { "comment": "/**\n * Generate the themed representation of a Drupal object.\n *\n * All requests for themed output must go through this function. It examines\n * the request and routes it to the appropriate theme function. If the current\n * theme does not provide an override function, the generic theme function is\n * called.\n *\n * For example, to retrieve the HTML for text that should be emphasized and\n * displayed as a placeholder inside a sentence, call\n * Drupal.theme('placeholder', text).\n *\n * @param func\n * The name of the theme function to call.\n * @param ...\n * Additional arguments to pass along to the theme function.\n * @return\n * Any data the theme function returns. This could be a plain HTML string,\n * but also a complex object.\n */", "meta": { "lineno": 313, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1287251034", "name": "Drupal.theme", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "func" ] }, "vars": { "args": false } }, "description": "Generate the themed representation of a Drupal object.\n\nAll requests for themed output must go through this function. It examines\nthe request and routes it to the appropriate theme function. If the current\ntheme does not provide an override function, the generic theme function is\ncalled.\n\nFor example, to retrieve the HTML for text that should be emphasized and\ndisplayed as a placeholder inside a sentence, call\nDrupal.theme('placeholder', text).", "params": [ { "name": "func", "description": "The name of the theme function to call." }, { "name": "...", "description": "Additional arguments to pass along to the theme function." } ], "returns": [ { "description": "Any data the theme function returns. This could be a plain HTML string,\n but also a complex object." } ], "name": "theme", "kind": "function", "memberof": "Drupal", "longname": "Drupal.theme", "scope": "static" }, { "comment": "", "meta": { "lineno": 314, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1730147382", "name": "args", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "args", "kind": "member", "memberof": "Drupal.theme", "longname": "Drupal.theme~args", "scope": "inner" }, { "comment": "/**\n * Freeze the current body height (as minimum height). Used to prevent\n * unnecessary upwards scrolling when doing DOM manipulations.\n */", "meta": { "lineno": 323, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2126858590", "name": "Drupal.freezeHeight", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Freeze the current body height (as minimum height). Used to prevent\nunnecessary upwards scrolling when doing DOM manipulations.", "name": "freezeHeight", "kind": "function", "memberof": "Drupal", "longname": "Drupal.freezeHeight", "scope": "static" }, { "comment": "", "meta": { "lineno": 326, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode774471675", "name": "position", "type": "STRING", "value": "absolute" } }, "undocumented": true, "name": "position", "kind": "member", "longname": "position", "scope": "global" }, { "comment": "", "meta": { "lineno": 327, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1115192682", "name": "top", "type": "STRING", "value": "0px" } }, "undocumented": true, "name": "top", "kind": "member", "longname": "top", "scope": "global" }, { "comment": "", "meta": { "lineno": 328, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1544825066", "name": "left", "type": "STRING", "value": "0px" } }, "undocumented": true, "name": "left", "kind": "member", "longname": "left", "scope": "global" }, { "comment": "", "meta": { "lineno": 329, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1567434291", "name": "width", "type": "STRING", "value": "1px" } }, "undocumented": true, "name": "width", "kind": "member", "longname": "width", "scope": "global" }, { "comment": "", "meta": { "lineno": 330, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1498711626", "name": "height", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "height", "kind": "member", "longname": "height", "scope": "global" }, { "comment": "/**\n * Unfreeze the body height.\n */", "meta": { "lineno": 337, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode748372710", "name": "Drupal.unfreezeHeight", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Unfreeze the body height.", "name": "unfreezeHeight", "kind": "function", "memberof": "Drupal", "longname": "Drupal.unfreezeHeight", "scope": "static" }, { "comment": "/**\n * Encodes a Drupal path for use in a URL.\n *\n * For aesthetic reasons slashes are not escaped.\n */", "meta": { "lineno": 346, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1420603736", "name": "Drupal.encodePath", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "item" ] } }, "description": "Encodes a Drupal path for use in a URL.\n\nFor aesthetic reasons slashes are not escaped.", "name": "encodePath", "kind": "function", "memberof": "Drupal", "longname": "Drupal.encodePath", "scope": "static" }, { "comment": "/**\n * Get the text selection in a textarea.\n */", "meta": { "lineno": 353, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1399618007", "name": "Drupal.getSelection", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "element" ] }, "vars": { "range1": false, "range2": false, "start": false, "end": false } }, "description": "Get the text selection in a textarea.", "name": "getSelection", "kind": "function", "memberof": "Drupal", "longname": "Drupal.getSelection", "scope": "static" }, { "comment": "", "meta": { "lineno": 354, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode46635017", "name": "range1", "type": "undefined", "value": "range1" } }, "undocumented": true, "name": "range1", "kind": "member", "memberof": "Drupal.getSelection", "longname": "Drupal.getSelection~range1", "scope": "inner" }, { "comment": "", "meta": { "lineno": 354, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2117846131", "name": "range2", "type": "undefined", "value": "range2" } }, "undocumented": true, "name": "range2", "kind": "member", "memberof": "Drupal.getSelection", "longname": "Drupal.getSelection~range2", "scope": "inner" }, { "comment": "", "meta": { "lineno": 354, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1501740254", "name": "start", "type": "undefined", "value": "start" } }, "undocumented": true, "name": "start", "kind": "member", "memberof": "Drupal.getSelection", "longname": "Drupal.getSelection~start", "scope": "inner" }, { "comment": "", "meta": { "lineno": 354, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1313946977", "name": "end", "type": "undefined", "value": "end" } }, "undocumented": true, "name": "end", "kind": "member", "memberof": "Drupal.getSelection", "longname": "Drupal.getSelection~end", "scope": "inner" }, { "comment": "", "meta": { "lineno": 357, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode197524960", "name": "range1", "type": "CALL", "funcscope": "Drupal.getSelection", "value": "CALL" } }, "undocumented": true, "name": "range1", "kind": "member", "longname": "Drupal.getSelection~range1", "memberof": "Drupal.getSelection", "scope": "inner" }, { "comment": "", "meta": { "lineno": 358, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode90969663", "name": "range2", "type": "CALL", "funcscope": "Drupal.getSelection", "value": "CALL" } }, "undocumented": true, "name": "range2", "kind": "member", "longname": "Drupal.getSelection~range2", "memberof": "Drupal.getSelection", "scope": "inner" }, { "comment": "", "meta": { "lineno": 364, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2010005445", "name": "start", "type": "SUB", "funcscope": "Drupal.getSelection", "value": "SUB" } }, "undocumented": true, "name": "start", "kind": "member", "longname": "Drupal.getSelection~start", "memberof": "Drupal.getSelection", "scope": "inner" }, { "comment": "", "meta": { "lineno": 365, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1896219768", "name": "end", "type": "ADD", "funcscope": "Drupal.getSelection", "value": "ADD" } }, "undocumented": true, "name": "end", "kind": "member", "longname": "Drupal.getSelection~end", "memberof": "Drupal.getSelection", "scope": "inner" }, { "comment": "", "meta": { "lineno": 366, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1615404108", "name": "start", "type": "NAME", "value": "start" } }, "undocumented": true, "name": "start", "kind": "member", "longname": "start", "scope": "global" }, { "comment": "", "meta": { "lineno": 366, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1074859057", "name": "end", "type": "NAME", "value": "end" } }, "undocumented": true, "name": "end", "kind": "member", "longname": "end", "scope": "global" }, { "comment": "", "meta": { "lineno": 368, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1983049639", "name": "start", "type": "GETPROP", "value": "element.selectionStart" } }, "undocumented": true, "name": "start", "kind": "member", "longname": "start", "scope": "global" }, { "comment": "", "meta": { "lineno": 368, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1763576851", "name": "end", "type": "GETPROP", "value": "element.selectionEnd" } }, "undocumented": true, "name": "end", "kind": "member", "longname": "end", "scope": "global" }, { "comment": "/**\n * Build an error message from an Ajax response.\n */", "meta": { "lineno": 374, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode431709193", "name": "Drupal.ajaxError", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "xmlhttp", "uri" ] }, "vars": { "statusCode": false, "statusText": false, "pathText": false, "responseText": false, "readyStateText": false, "message": false } }, "description": "Build an error message from an Ajax response.", "name": "ajaxError", "kind": "function", "memberof": "Drupal", "longname": "Drupal.ajaxError", "scope": "static" }, { "comment": "", "meta": { "lineno": 375, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1871151428", "name": "statusCode", "type": "undefined", "value": "statusCode" } }, "undocumented": true, "name": "statusCode", "kind": "member", "memberof": "Drupal.ajaxError", "longname": "Drupal.ajaxError~statusCode", "scope": "inner" }, { "comment": "", "meta": { "lineno": 375, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode257798932", "name": "statusText", "type": "undefined", "value": "statusText" } }, "undocumented": true, "name": "statusText", "kind": "member", "memberof": "Drupal.ajaxError", "longname": "Drupal.ajaxError~statusText", "scope": "inner" }, { "comment": "", "meta": { "lineno": 375, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode646286321", "name": "pathText", "type": "undefined", "value": "pathText" } }, "undocumented": true, "name": "pathText", "kind": "member", "memberof": "Drupal.ajaxError", "longname": "Drupal.ajaxError~pathText", "scope": "inner" }, { "comment": "", "meta": { "lineno": 375, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode831013236", "name": "responseText", "type": "undefined", "value": "responseText" } }, "undocumented": true, "name": "responseText", "kind": "member", "memberof": "Drupal.ajaxError", "longname": "Drupal.ajaxError~responseText", "scope": "inner" }, { "comment": "", "meta": { "lineno": 375, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2106971390", "name": "readyStateText", "type": "undefined", "value": "readyStateText" } }, "undocumented": true, "name": "readyStateText", "kind": "member", "memberof": "Drupal.ajaxError", "longname": "Drupal.ajaxError~readyStateText", "scope": "inner" }, { "comment": "", "meta": { "lineno": 375, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode690485778", "name": "message", "type": "undefined", "value": "message" } }, "undocumented": true, "name": "message", "kind": "member", "memberof": "Drupal.ajaxError", "longname": "Drupal.ajaxError~message", "scope": "inner" }, { "comment": "", "meta": { "lineno": 377, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2109759485", "name": "statusCode", "type": "ADD", "funcscope": "Drupal.ajaxError", "value": "ADD" } }, "undocumented": true, "name": "statusCode", "kind": "member", "longname": "Drupal.ajaxError~statusCode", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 377, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode896472140", "name": "\"!status\"", "type": "GETPROP", "value": "xmlhttp.status" } }, "undocumented": true, "name": "\"!status\"", "kind": "member", "longname": "\"!status\"", "scope": "global" }, { "comment": "", "meta": { "lineno": 380, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode394215580", "name": "statusCode", "type": "ADD", "funcscope": "Drupal.ajaxError", "value": "ADD" } }, "undocumented": true, "name": "statusCode", "kind": "member", "longname": "Drupal.ajaxError~statusCode", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 383, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1660604171", "name": "pathText", "type": "ADD", "funcscope": "Drupal.ajaxError", "value": "ADD" } }, "undocumented": true, "name": "pathText", "kind": "member", "longname": "Drupal.ajaxError~pathText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 383, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1432094680", "name": "\"!uri\"", "type": "NAME", "value": "uri" } }, "undocumented": true, "name": "\"!uri\"", "kind": "member", "longname": "\"!uri\"", "scope": "global" }, { "comment": "", "meta": { "lineno": 384, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode204425426", "name": "statusText", "type": "STRING", "funcscope": "Drupal.ajaxError" } }, "undocumented": true, "name": "statusText", "kind": "member", "longname": "Drupal.ajaxError~statusText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 389, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1295807352", "name": "statusText", "type": "ADD", "funcscope": "Drupal.ajaxError", "value": "ADD" } }, "undocumented": true, "name": "statusText", "kind": "member", "longname": "Drupal.ajaxError~statusText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 389, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1526115339", "name": "\"!statusText\"", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "\"!statusText\"", "kind": "member", "longname": "\"!statusText\"", "scope": "global" }, { "comment": "", "meta": { "lineno": 393, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode282106579", "name": "responseText", "type": "STRING", "funcscope": "Drupal.ajaxError" } }, "undocumented": true, "name": "responseText", "kind": "member", "longname": "Drupal.ajaxError~responseText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 397, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1113757163", "name": "responseText", "type": "ADD", "funcscope": "Drupal.ajaxError", "value": "ADD" } }, "undocumented": true, "name": "responseText", "kind": "member", "longname": "Drupal.ajaxError~responseText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 397, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2138123066", "name": "\"!responseText\"", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "\"!responseText\"", "kind": "member", "longname": "\"!responseText\"", "scope": "global" }, { "comment": "", "meta": { "lineno": 401, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode381312122", "name": "responseText", "type": "CALL", "funcscope": "Drupal.ajaxError", "value": "CALL" } }, "undocumented": true, "name": "responseText", "kind": "member", "longname": "Drupal.ajaxError~responseText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 402, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1719451110", "name": "responseText", "type": "CALL", "funcscope": "Drupal.ajaxError", "value": "CALL" } }, "undocumented": true, "name": "responseText", "kind": "member", "longname": "Drupal.ajaxError~responseText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 405, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2083397407", "name": "readyStateText", "type": "HOOK", "funcscope": "Drupal.ajaxError", "value": "HOOK" } }, "undocumented": true, "name": "readyStateText", "kind": "member", "longname": "Drupal.ajaxError~readyStateText", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 405, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode2097086015", "name": "\"!readyState\"", "type": "GETPROP", "value": "xmlhttp.readyState" } }, "undocumented": true, "name": "\"!readyState\"", "kind": "member", "longname": "\"!readyState\"", "scope": "global" }, { "comment": "", "meta": { "lineno": 407, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode74675057", "name": "message", "type": "ADD", "funcscope": "Drupal.ajaxError", "value": "ADD" } }, "undocumented": true, "name": "message", "kind": "member", "longname": "Drupal.ajaxError~message", "memberof": "Drupal.ajaxError", "scope": "inner" }, { "comment": "", "meta": { "lineno": 415, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode1083228271", "name": "document.cookie", "type": "STRING", "value": "has_js=1; path=/" } }, "undocumented": true, "name": "cookie", "kind": "member", "memberof": "document", "longname": "document.cookie", "scope": "static" }, { "comment": "/**\n * Formats text for emphasized display in a placeholder inside a sentence.\n *\n * @param str\n * The text to format (plain-text).\n * @return\n * The formatted text (html).\n */", "meta": { "lineno": 435, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "drupal.js", "code": { "id": "astnode409971196", "name": "placeholder", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "str" ] } }, "description": "Formats text for emphasized display in a placeholder inside a sentence.", "params": [ { "name": "str", "description": "The text to format (plain-text)." } ], "returns": [ { "description": "The formatted text (html)." } ], "name": "placeholder", "kind": "function", "memberof": "Drupal.theme", "longname": "Drupal.theme#placeholder", "scope": "instance" }, { "comment": "/**\n * @file JavaScript for Ajax page updating.\n *\n * Ajax is a method of making a request via JavaScript while viewing an HTML\n * page. The request returns an array of commands encoded in JSON, which is\n * then executed to make any changes that are necessary to the page.\n *\n * Drupal uses this file to enhance form elements with #ajax['path'] and\n * #ajax['wrapper'] properties. If set, this file will automatically be included\n * to provide Ajax capabilities.\n */", "meta": { "lineno": 1, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": {} }, "name": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/ajax.js", "kind": "file", "description": "JavaScript for Ajax page updating.\n\nAjax is a method of making a request via JavaScript while viewing an HTML\npage. The request returns an array of commands encoded in JSON, which is\nthen executed to make any changes that are necessary to the page.\n\nDrupal uses this file to enhance form elements with #ajax['path'] and\n#ajax['wrapper'] properties. If set, this file will automatically be included\nto provide Ajax capabilities.", "preserveName": true, "longname": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/ajax.js" }, { "comment": "", "meta": { "lineno": 17, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode948252856", "name": "Drupal.ajax", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "ajax", "kind": "member", "memberof": "Drupal", "longname": "Drupal.ajax", "scope": "static" }, { "comment": "/**\n * Attaches the Ajax behavior to each Ajax form element.\n *\n * @property {function} attach\n * Description of the attach function goes here.\n */", "meta": { "lineno": 25, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1675553600", "name": "Drupal.behaviors.AJAX", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "description": "Attaches the Ajax behavior to each Ajax form element.", "properties": [ { "type": { "names": [ "function" ], "optional": null, "nullable": null, "variable": null }, "description": "Description of the attach function goes here.", "name": "attach" } ], "name": "AJAX", "kind": "member", "memberof": "Drupal.behaviors", "longname": "Drupal.behaviors.AJAX", "scope": "static" }, { "comment": "/**\n * Attaches the behavior.\n */", "meta": { "lineno": 29, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1681582401", "name": "attach", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "context", "settings" ] }, "vars": { "base": false, "element_settings": false, "": false } }, "description": "Attaches the behavior.", "name": "attach", "kind": "function", "memberof": "Drupal.behaviors.AJAX", "scope": "static", "longname": "Drupal.behaviors.AJAX.attach" }, { "comment": "", "meta": { "lineno": 31, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1305701886", "name": "base", "type": "undefined", "value": "base" } }, "undocumented": true, "name": "base", "kind": "member", "memberof": "Drupal.behaviors.AJAX.attach", "longname": "Drupal.behaviors.AJAX.attach~base", "scope": "inner" }, { "comment": "", "meta": { "lineno": 32, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode126273328", "name": "element_settings", "type": "GETELEM", "value": "settings.ajax[base]" } }, "undocumented": true, "name": "element_settings", "kind": "member", "memberof": "Drupal.behaviors.AJAX.attach", "longname": "Drupal.behaviors.AJAX.attach~element_settings", "scope": "inner" }, { "comment": "", "meta": { "lineno": 34, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode572511714", "name": "element_settings.selector", "type": "ADD", "funcscope": "Drupal.behaviors.AJAX.attach", "value": "ADD" } }, "undocumented": true, "name": "selector", "kind": "member", "longname": "Drupal.behaviors.AJAX.attach~element_settings.selector", "memberof": "Drupal.behaviors.AJAX.attach~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 37, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode330326081", "name": "element_settings.element", "type": "THIS", "funcscope": "Drupal.behaviors.AJAX.attach", "value": "this" } }, "undocumented": true, "name": "element", "kind": "member", "longname": "Drupal.behaviors.AJAX.attach~element_settings.element", "memberof": "Drupal.behaviors.AJAX.attach~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 38, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1854196745", "name": "Drupal.ajax[element_settings.selector]", "type": "NEW", "value": "NEW" } }, "undocumented": true, "name": "selector]", "kind": "member", "memberof": "Drupal.ajax[element_settings", "longname": "Drupal.ajax[element_settings.selector]", "scope": "static" }, { "comment": "", "meta": { "lineno": 44, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode971277631", "name": "element_settings", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "element_settings", "kind": "member", "memberof": "", "longname": "~element_settings", "scope": "inner" }, { "comment": "", "meta": { "lineno": 46, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode546909102", "name": "element_settings.progress", "type": "OBJECTLIT", "funcscope": "", "value": "OBJECTLIT" } }, "undocumented": true, "name": "progress", "kind": "member", "longname": "~element_settings.progress", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 46, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode489854530", "name": "type", "type": "STRING", "value": "throbber" } }, "undocumented": true, "name": "type", "kind": "member", "memberof": "~element_settings.progress", "scope": "static", "longname": "~element_settings.progress.type" }, { "comment": "", "meta": { "lineno": 51, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode833460463", "name": "element_settings.url", "type": "CALL", "funcscope": "", "value": "CALL" } }, "undocumented": true, "name": "url", "kind": "member", "longname": "~element_settings.url", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 52, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1464447632", "name": "element_settings.event", "type": "STRING", "funcscope": "", "value": "click" } }, "undocumented": true, "name": "event", "kind": "member", "longname": "~element_settings.event", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 54, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1750442808", "name": "base", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "base", "kind": "member", "memberof": "", "longname": "~base", "scope": "inner" }, { "comment": "", "meta": { "lineno": 55, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode505588567", "name": "Drupal.ajax[base]", "type": "NEW", "value": "NEW" } }, "undocumented": true, "name": "ajax[base]", "kind": "member", "memberof": "Drupal", "longname": "Drupal.ajax[base]", "scope": "static" }, { "comment": "", "meta": { "lineno": 60, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2047706572", "name": "element_settings", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "element_settings", "kind": "member", "memberof": "", "longname": "~element_settings", "scope": "inner" }, { "comment": "", "meta": { "lineno": 64, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode530654357", "name": "element_settings.url", "type": "CALL", "funcscope": "", "value": "CALL" } }, "undocumented": true, "name": "url", "kind": "member", "longname": "~element_settings.url", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 67, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode848649429", "name": "element_settings.setClick", "type": "TRUE", "funcscope": "", "value": "true" } }, "undocumented": true, "name": "setClick", "kind": "member", "longname": "~element_settings.setClick", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 69, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode494299142", "name": "element_settings.event", "type": "STRING", "funcscope": "", "value": "click" } }, "undocumented": true, "name": "event", "kind": "member", "longname": "~element_settings.event", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 71, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode969886252", "name": "element_settings.progress", "type": "OBJECTLIT", "funcscope": "", "value": "OBJECTLIT" } }, "undocumented": true, "name": "progress", "kind": "member", "longname": "~element_settings.progress", "memberof": "~element_settings", "scope": "static" }, { "comment": "", "meta": { "lineno": 71, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2007882585", "name": "type", "type": "STRING", "value": "throbber" } }, "undocumented": true, "name": "type", "kind": "member", "memberof": "~element_settings.progress", "scope": "static", "longname": "~element_settings.progress.type" }, { "comment": "", "meta": { "lineno": 73, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode176271867", "name": "base", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "base", "kind": "member", "memberof": "", "longname": "~base", "scope": "inner" }, { "comment": "", "meta": { "lineno": 74, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1067398966", "name": "Drupal.ajax[base]", "type": "NEW", "value": "NEW" } }, "undocumented": true, "name": "ajax[base]", "kind": "member", "memberof": "Drupal", "longname": "Drupal.ajax[base]", "scope": "static" }, { "comment": "/**\n * Constructs an Ajax object.\n *\n * @class\n * @classdesc Provides Ajax page updating via jQuery $.ajax.\n *\n * All Ajax objects on a page are accessible through the global Drupal.ajax\n * object and are keyed by the submit button's ID. You can access them from\n * your module's JavaScript file to override properties or functions.\n *\n * For example, if your Ajax enabled button has the ID 'edit-submit', you can\n * redefine the function that is called to insert the new content like this\n * (inside a Drupal.behaviors attach block):\n * @code\n * Drupal.behaviors.myCustomAJAXStuff = {\n * attach: function (context, settings) {\n * Drupal.ajax['edit-submit'].commands.insert = function (ajax, response, status) {\n * new_content = $(response.data);\n * $('#my-wrapper').append(new_content);\n * alert('New content was appended to #my-wrapper');\n * }\n * }\n * };\n * @endcode\n */", "meta": { "lineno": 104, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1320864185", "name": "Drupal.ajax", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "base", "element", "element_settings" ] }, "vars": { "defaults": false, "ajax": false, "": false } }, "description": "Constructs an Ajax object.", "kind": "class", "classdesc": "Provides Ajax page updating via jQuery $.ajax.\n\nAll Ajax objects on a page are accessible through the global Drupal.ajax\nobject and are keyed by the submit button's ID. You can access them from\nyour module's JavaScript file to override properties or functions.\n\nFor example, if your Ajax enabled button has the ID 'edit-submit', you can\nredefine the function that is called to insert the new content like this\n(inside a Drupal.behaviors attach block):", "tags": [ { "originalTitle": "code", "title": "code", "text": "Drupal.behaviors.myCustomAJAXStuff = {\n attach: function (context, settings) {\n Drupal.ajax['edit-submit'].commands.insert = function (ajax, response, status) {\n new_content = $(response.data);\n $('#my-wrapper').append(new_content);\n alert('New content was appended to #my-wrapper');\n }\n }\n };", "value": "Drupal.behaviors.myCustomAJAXStuff = {\n attach: function (context, settings) {\n Drupal.ajax['edit-submit'].commands.insert = function (ajax, response, status) {\n new_content = $(response.data);\n $('#my-wrapper').append(new_content);\n alert('New content was appended to #my-wrapper');\n }\n }\n };" }, { "originalTitle": "endcode", "title": "endcode", "text": "" } ], "name": "ajax", "memberof": "Drupal", "longname": "Drupal.ajax", "scope": "static" }, { "comment": "", "meta": { "lineno": 105, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1802010236", "name": "defaults", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "defaults", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax~defaults", "scope": "inner" }, { "comment": "", "meta": { "lineno": 106, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1406140084", "name": "url", "type": "STRING", "value": "system/ajax" } }, "undocumented": true, "name": "url", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.url" }, { "comment": "", "meta": { "lineno": 107, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1006753184", "name": "event", "type": "STRING", "value": "mousedown" } }, "undocumented": true, "name": "event", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.event" }, { "comment": "", "meta": { "lineno": 108, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode63243527", "name": "keypress", "type": "TRUE", "value": "true" } }, "undocumented": true, "name": "keypress", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.keypress" }, { "comment": "", "meta": { "lineno": 109, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1408647512", "name": "selector", "type": "ADD", "value": "ADD" } }, "undocumented": true, "name": "selector", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.selector" }, { "comment": "", "meta": { "lineno": 110, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode3981922", "name": "effect", "type": "STRING", "value": "none" } }, "undocumented": true, "name": "effect", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.effect" }, { "comment": "", "meta": { "lineno": 111, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode456208447", "name": "speed", "type": "STRING", "value": "none" } }, "undocumented": true, "name": "speed", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.speed" }, { "comment": "", "meta": { "lineno": 112, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode108681753", "name": "method", "type": "STRING", "value": "replaceWith" } }, "undocumented": true, "name": "method", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.method" }, { "comment": "", "meta": { "lineno": 113, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2130917999", "name": "progress", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "progress", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.progress" }, { "comment": "", "meta": { "lineno": 114, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode650519471", "name": "type", "type": "STRING", "value": "throbber" } }, "undocumented": true, "name": "type", "kind": "member", "memberof": "Drupal.ajax~defaults.progress", "scope": "static", "longname": "Drupal.ajax~defaults.progress.type" }, { "comment": "", "meta": { "lineno": 115, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode771811155", "name": "message", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "message", "kind": "member", "memberof": "Drupal.ajax~defaults.progress", "scope": "static", "longname": "Drupal.ajax~defaults.progress.message" }, { "comment": "", "meta": { "lineno": 117, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode414297791", "name": "submit", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "submit", "kind": "member", "memberof": "Drupal.ajax~defaults", "scope": "static", "longname": "Drupal.ajax~defaults.submit" }, { "comment": "", "meta": { "lineno": 118, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode130437654", "name": "js", "type": "TRUE", "value": "true" } }, "undocumented": true, "name": "js", "kind": "member", "memberof": "Drupal.ajax~defaults.submit", "scope": "static", "longname": "Drupal.ajax~defaults.submit.js" }, { "comment": "", "meta": { "lineno": 124, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1068896286", "name": "this.element", "type": "NAME", "value": "element" } }, "undocumented": true, "name": "element", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#element", "scope": "instance" }, { "comment": "", "meta": { "lineno": 125, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode461462523", "name": "this.element_settings", "type": "NAME", "value": "element_settings" } }, "undocumented": true, "name": "element_settings", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#element_settings", "scope": "instance" }, { "comment": "", "meta": { "lineno": 134, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1259252154", "name": "this.url", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "url", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#url", "scope": "instance" }, { "comment": "", "meta": { "lineno": 135, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode110977125", "name": "this.wrapper", "type": "ADD", "value": "ADD" } }, "undocumented": true, "name": "wrapper", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#wrapper", "scope": "instance" }, { "comment": "", "meta": { "lineno": 140, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1196121930", "name": "this.form", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "form", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#form", "scope": "instance" }, { "comment": "", "meta": { "lineno": 145, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2128222380", "name": "ajax", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "ajax", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax~ajax", "scope": "inner" }, { "comment": "", "meta": { "lineno": 146, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1163904012", "name": "ajax.options", "type": "OBJECTLIT", "funcscope": "Drupal.ajax", "value": "OBJECTLIT" } }, "undocumented": true, "name": "options", "kind": "member", "longname": "Drupal.ajax~ajax.options", "memberof": "Drupal.ajax~ajax", "scope": "static" }, { "comment": "", "meta": { "lineno": 147, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2128911821", "name": "url", "type": "GETPROP", "value": "ajax.url" } }, "undocumented": true, "name": "url", "kind": "member", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.url" }, { "comment": "", "meta": { "lineno": 148, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode185070685", "name": "data", "type": "GETPROP", "value": "ajax.submit" } }, "undocumented": true, "name": "data", "kind": "member", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.data" }, { "comment": "", "meta": { "lineno": 149, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1191940729", "name": "beforeSerialize", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "element_settings", "options" ] } }, "undocumented": true, "name": "beforeSerialize", "kind": "function", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.beforeSerialize" }, { "comment": "", "meta": { "lineno": 152, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1290170198", "name": "beforeSubmit", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "form_values", "element_settings", "options" ] } }, "undocumented": true, "name": "beforeSubmit", "kind": "function", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.beforeSubmit" }, { "comment": "", "meta": { "lineno": 153, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode371838604", "name": "ajax.ajaxing", "type": "TRUE", "funcscope": "Drupal.ajax", "value": "true" } }, "undocumented": true, "name": "ajaxing", "kind": "member", "longname": "Drupal.ajax~ajax.ajaxing", "memberof": "Drupal.ajax~ajax", "scope": "static" }, { "comment": "", "meta": { "lineno": 156, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode386485576", "name": "beforeSend", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "xmlhttprequest", "options" ] } }, "undocumented": true, "name": "beforeSend", "kind": "function", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.beforeSend" }, { "comment": "", "meta": { "lineno": 157, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1752942745", "name": "ajax.ajaxing", "type": "TRUE", "funcscope": "Drupal.ajax", "value": "true" } }, "undocumented": true, "name": "ajaxing", "kind": "member", "longname": "Drupal.ajax~ajax.ajaxing", "memberof": "Drupal.ajax~ajax", "scope": "static" }, { "comment": "", "meta": { "lineno": 160, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1342544436", "name": "success", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "response", "status" ] } }, "undocumented": true, "name": "success", "kind": "function", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.success" }, { "comment": "", "meta": { "lineno": 164, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1278514289", "name": "response", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "response", "kind": "member", "longname": "response", "scope": "global" }, { "comment": "", "meta": { "lineno": 168, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode581536050", "name": "complete", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "response", "status" ] } }, "undocumented": true, "name": "complete", "kind": "function", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.complete" }, { "comment": "", "meta": { "lineno": 169, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1594536095", "name": "ajax.ajaxing", "type": "FALSE", "funcscope": "Drupal.ajax", "value": "false" } }, "undocumented": true, "name": "ajaxing", "kind": "member", "longname": "Drupal.ajax~ajax.ajaxing", "memberof": "Drupal.ajax~ajax", "scope": "static" }, { "comment": "", "meta": { "lineno": 174, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1748234462", "name": "dataType", "type": "STRING", "value": "json" } }, "undocumented": true, "name": "dataType", "kind": "member", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.dataType" }, { "comment": "", "meta": { "lineno": 175, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode616624620", "name": "type", "type": "STRING", "value": "POST" } }, "undocumented": true, "name": "type", "kind": "member", "memberof": "Drupal.ajax~ajax.options", "scope": "static", "longname": "Drupal.ajax~ajax.options.type" }, { "comment": "/**\n * Handles a key press.\n *\n * The Ajax object will, if instructed, bind to a key press response. This\n * will test to see if the key press is valid to trigger this event and\n * if it is, trigger it for us and prevent other keypresses from triggering.\n * In this case we're handling RETURN and SPACEBAR keypresses (event codes 13\n * and 32. RETURN is often used to submit a form when in a textfield, and\n * SPACE is often used to activate an element without submitting.\n */", "meta": { "lineno": 210, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode666249899", "name": "Drupal.ajax.prototype.keypressResponse", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "element", "event" ] }, "vars": { "ajax": false } }, "description": "Handles a key press.\n\nThe Ajax object will, if instructed, bind to a key press response. This\nwill test to see if the key press is valid to trigger this event and\nif it is, trigger it for us and prevent other keypresses from triggering.\nIn this case we're handling RETURN and SPACEBAR keypresses (event codes 13\nand 32. RETURN is often used to submit a form when in a textfield, and\nSPACE is often used to activate an element without submitting.", "name": "keypressResponse", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#keypressResponse", "scope": "instance" }, { "comment": "", "meta": { "lineno": 212, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1280551684", "name": "ajax", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "ajax", "kind": "member", "memberof": "Drupal.ajax#keypressResponse", "longname": "Drupal.ajax#keypressResponse~ajax", "scope": "inner" }, { "comment": "/**\n * Handles an event that triggers an Ajax response.\n *\n * When an event that triggers an Ajax response happens, this method will\n * perform the actual Ajax call. It is bound to the event using\n * bind() in the constructor, and it uses the options specified on the\n * ajax object.\n */", "meta": { "lineno": 232, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode249895724", "name": "Drupal.ajax.prototype.eventResponse", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "element", "event" ] }, "vars": { "ajax": false } }, "description": "Handles an event that triggers an Ajax response.\n\nWhen an event that triggers an Ajax response happens, this method will\nperform the actual Ajax call. It is bound to the event using\nbind() in the constructor, and it uses the options specified on the\najax object.", "name": "eventResponse", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#eventResponse", "scope": "instance" }, { "comment": "", "meta": { "lineno": 234, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode103468119", "name": "ajax", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "ajax", "kind": "member", "memberof": "Drupal.ajax#eventResponse", "longname": "Drupal.ajax#eventResponse~ajax", "scope": "inner" }, { "comment": "", "meta": { "lineno": 250, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1109376982", "name": "element.form.clk", "type": "NAME", "value": "element" } }, "undocumented": true, "name": "clk", "kind": "member", "memberof": "element.form", "longname": "element.form.clk", "scope": "static" }, { "comment": "", "meta": { "lineno": 263, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1975391989", "name": "ajax.ajaxing", "type": "FALSE", "funcscope": "Drupal.ajax#eventResponse", "value": "false" } }, "undocumented": true, "name": "ajaxing", "kind": "member", "longname": "Drupal.ajax#eventResponse~ajax.ajaxing", "memberof": "Drupal.ajax#eventResponse~ajax", "scope": "static" }, { "comment": "/**\n * Preprocesses form serialization.\n *\n * Runs before the beforeSend() handler (see below), and unlike that one, runs\n * before field data is collected.\n */", "meta": { "lineno": 284, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode665360297", "name": "Drupal.ajax.prototype.beforeSerialize", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "element", "options" ] }, "vars": { "settings": false, "": false, "key": false } }, "description": "Preprocesses form serialization.\n\nRuns before the beforeSend() handler (see below), and unlike that one, runs\nbefore field data is collected.", "name": "beforeSerialize", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#beforeSerialize", "scope": "instance" }, { "comment": "", "meta": { "lineno": 291, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1268020374", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax#beforeSerialize", "longname": "Drupal.ajax#beforeSerialize~settings", "scope": "inner" }, { "comment": "", "meta": { "lineno": 297, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode679529161", "name": "options.data['ajax_html_ids[]']", "type": "ARRAYLIT", "value": "ARRAYLIT" } }, "undocumented": true, "name": "data['ajax_html_ids[]']", "kind": "member", "memberof": "options", "longname": "options.data['ajax_html_ids[]']", "scope": "static" }, { "comment": "", "meta": { "lineno": 307, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode726882005", "name": "options.data['ajax_page_state[theme]']", "type": "GETPROP", "value": "Drupal.settings.ajaxPageState.theme" } }, "undocumented": true, "name": "data['ajax_page_state[theme]']", "kind": "member", "memberof": "options", "longname": "options.data['ajax_page_state[theme]']", "scope": "static" }, { "comment": "", "meta": { "lineno": 308, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1257988948", "name": "options.data['ajax_page_state[theme_token]']", "type": "GETPROP", "value": "Drupal.settings.ajaxPageState.theme_token" } }, "undocumented": true, "name": "data['ajax_page_state[theme_token]']", "kind": "member", "memberof": "options", "longname": "options.data['ajax_page_state[theme_token]']", "scope": "static" }, { "comment": "", "meta": { "lineno": 309, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode797427036", "name": "key", "type": "undefined", "value": "key" } }, "undocumented": true, "name": "key", "kind": "member", "memberof": "Drupal.ajax#beforeSerialize", "longname": "Drupal.ajax#beforeSerialize~key", "scope": "inner" }, { "comment": "", "meta": { "lineno": 310, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1118841128", "name": "options.data['ajax_page_state[css][' + key + ']']", "type": "NUMBER", "value": "1" } }, "undocumented": true, "name": "data['ajax_page_state[css][' + key + ']']", "kind": "member", "memberof": "options", "longname": "options.data['ajax_page_state[css][' + key + ']']", "scope": "static" }, { "comment": "", "meta": { "lineno": 312, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode16094127", "name": "key", "type": "undefined", "value": "key" } }, "undocumented": true, "name": "key", "kind": "member", "memberof": "Drupal.ajax#beforeSerialize", "longname": "Drupal.ajax#beforeSerialize~key", "scope": "inner" }, { "comment": "", "meta": { "lineno": 313, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1863318328", "name": "options.data['ajax_page_state[js][' + key + ']']", "type": "NUMBER", "value": "1" } }, "undocumented": true, "name": "data['ajax_page_state[js][' + key + ']']", "kind": "member", "memberof": "options", "longname": "options.data['ajax_page_state[js][' + key + ']']", "scope": "static" }, { "comment": "/**\n * Modifies form values prior to form submission.\n */", "meta": { "lineno": 320, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2045652012", "name": "Drupal.ajax.prototype.beforeSubmit", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "form_values", "element", "options" ] } }, "description": "Modifies form values prior to form submission.", "name": "beforeSubmit", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#beforeSubmit", "scope": "instance" }, { "comment": "/**\n * Prepares the Ajax request before it is sent.\n */", "meta": { "lineno": 328, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode372093341", "name": "Drupal.ajax.prototype.beforeSend", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "xmlhttprequest", "options" ] }, "vars": { "v": false, "progressBar": false } }, "description": "Prepares the Ajax request before it is sent.", "name": "beforeSend", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#beforeSend", "scope": "instance" }, { "comment": "", "meta": { "lineno": 339, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1745756817", "name": "options.extraData", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "extraData", "kind": "member", "memberof": "options", "longname": "options.extraData", "scope": "static" }, { "comment": "", "meta": { "lineno": 344, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode393978767", "name": "options.extraData.ajax_iframe_upload", "type": "STRING", "value": "1" } }, "undocumented": true, "name": "ajax_iframe_upload", "kind": "member", "memberof": "options.extraData", "longname": "options.extraData.ajax_iframe_upload", "scope": "static" }, { "comment": "", "meta": { "lineno": 351, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode380183900", "name": "v", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "v", "kind": "member", "memberof": "Drupal.ajax#beforeSend", "longname": "Drupal.ajax#beforeSend~v", "scope": "inner" }, { "comment": "", "meta": { "lineno": 353, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode630592897", "name": "options.extraData[this.element.name]", "type": "NAME", "value": "v" } }, "undocumented": true, "name": "name]", "kind": "member", "memberof": "options.extraData[this.element", "longname": "options.extraData[this.element.name]", "scope": "static" }, { "comment": "", "meta": { "lineno": 365, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode239625678", "name": "progressBar", "type": "NEW", "value": "NEW" } }, "undocumented": true, "name": "progressBar", "kind": "member", "memberof": "Drupal.ajax#beforeSend", "longname": "Drupal.ajax#beforeSend~progressBar", "scope": "inner" }, { "comment": "", "meta": { "lineno": 372, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1431140165", "name": "this.progress.element", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "element", "kind": "member", "memberof": "Drupal.ajax#progress", "longname": "Drupal.ajax#progress.element", "scope": "static" }, { "comment": "", "meta": { "lineno": 373, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1775852968", "name": "this.progress.object", "type": "NAME", "value": "progressBar" } }, "undocumented": true, "name": "object", "kind": "member", "memberof": "Drupal.ajax#progress", "longname": "Drupal.ajax#progress.object", "scope": "static" }, { "comment": "", "meta": { "lineno": 377, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1026920195", "name": "this.progress.element", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "element", "kind": "member", "memberof": "Drupal.ajax#progress", "longname": "Drupal.ajax#progress.element", "scope": "static" }, { "comment": "/**\n * Handles form redirection completion.\n */", "meta": { "lineno": 388, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode107049838", "name": "Drupal.ajax.prototype.success", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "response", "status" ] }, "vars": { "i": false, "settings": false } }, "description": "Handles form redirection completion.", "name": "success", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#success", "scope": "instance" }, { "comment": "", "meta": { "lineno": 400, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode689522370", "name": "i", "type": "undefined", "value": "i" } }, "undocumented": true, "name": "i", "kind": "member", "memberof": "Drupal.ajax#success", "longname": "Drupal.ajax#success~i", "scope": "inner" }, { "comment": "", "meta": { "lineno": 411, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode912753321", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax#success", "longname": "Drupal.ajax#success~settings", "scope": "inner" }, { "comment": "", "meta": { "lineno": 419, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2071611785", "name": "this.settings", "type": "NULL", "value": "NULL" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#settings", "scope": "instance" }, { "comment": "/**\n * Builds an effect object, telling what to do when adding new HTML.\n */", "meta": { "lineno": 425, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode193738361", "name": "Drupal.ajax.prototype.getEffect", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "response" ] }, "vars": { "type": false, "speed": false, "effect": false } }, "description": "Builds an effect object, telling what to do when adding new HTML.", "name": "getEffect", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#getEffect", "scope": "instance" }, { "comment": "", "meta": { "lineno": 426, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1470903161", "name": "type", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "type", "kind": "member", "memberof": "Drupal.ajax#getEffect", "longname": "Drupal.ajax#getEffect~type", "scope": "inner" }, { "comment": "", "meta": { "lineno": 427, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1260137319", "name": "speed", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "speed", "kind": "member", "memberof": "Drupal.ajax#getEffect", "longname": "Drupal.ajax#getEffect~speed", "scope": "inner" }, { "comment": "", "meta": { "lineno": 429, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1498770706", "name": "effect", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "effect", "kind": "member", "memberof": "Drupal.ajax#getEffect", "longname": "Drupal.ajax#getEffect~effect", "scope": "inner" }, { "comment": "", "meta": { "lineno": 431, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1290662793", "name": "effect.showEffect", "type": "STRING", "funcscope": "Drupal.ajax#getEffect", "value": "show" } }, "undocumented": true, "name": "showEffect", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.showEffect", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 432, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1180915164", "name": "effect.hideEffect", "type": "STRING", "funcscope": "Drupal.ajax#getEffect", "value": "hide" } }, "undocumented": true, "name": "hideEffect", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.hideEffect", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 433, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2102860018", "name": "effect.showSpeed", "type": "STRING", "funcscope": "Drupal.ajax#getEffect" } }, "undocumented": true, "name": "showSpeed", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.showSpeed", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 436, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode927591327", "name": "effect.showEffect", "type": "STRING", "funcscope": "Drupal.ajax#getEffect", "value": "fadeIn" } }, "undocumented": true, "name": "showEffect", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.showEffect", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 437, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1080513750", "name": "effect.hideEffect", "type": "STRING", "funcscope": "Drupal.ajax#getEffect", "value": "fadeOut" } }, "undocumented": true, "name": "hideEffect", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.hideEffect", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 438, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode440048570", "name": "effect.showSpeed", "type": "NAME", "funcscope": "Drupal.ajax#getEffect", "value": "speed" } }, "undocumented": true, "name": "showSpeed", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.showSpeed", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 441, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1108775083", "name": "effect.showEffect", "type": "ADD", "funcscope": "Drupal.ajax#getEffect", "value": "ADD" } }, "undocumented": true, "name": "showEffect", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.showEffect", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 442, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1786791668", "name": "effect.hideEffect", "type": "ADD", "funcscope": "Drupal.ajax#getEffect", "value": "ADD" } }, "undocumented": true, "name": "hideEffect", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.hideEffect", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "", "meta": { "lineno": 443, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2135760193", "name": "effect.showSpeed", "type": "NAME", "funcscope": "Drupal.ajax#getEffect", "value": "speed" } }, "undocumented": true, "name": "showSpeed", "kind": "member", "longname": "Drupal.ajax#getEffect~effect.showSpeed", "memberof": "Drupal.ajax#getEffect~effect", "scope": "static" }, { "comment": "/**\n * Handles form redirection errors.\n */", "meta": { "lineno": 452, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1638726193", "name": "Drupal.ajax.prototype.error", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "response", "uri" ] }, "vars": { "settings": false } }, "description": "Handles form redirection errors.", "name": "error", "kind": "function", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#error", "scope": "instance" }, { "comment": "", "meta": { "lineno": 467, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode109962338", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax#error", "longname": "Drupal.ajax#error~settings", "scope": "inner" }, { "comment": "/**\n * Provides a series of commands that the server can request the client perform.\n *\n * @class\n */", "meta": { "lineno": 477, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1545267468", "name": "Drupal.ajax.prototype.commands", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "description": "Provides a series of commands that the server can request the client perform.", "kind": "class", "name": "commands", "memberof": "Drupal.ajax", "longname": "Drupal.ajax#commands", "scope": "instance" }, { "comment": "/**\n * Inserts new content into the DOM.\n */", "meta": { "lineno": 481, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode76543183", "name": "insert", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] }, "vars": { "wrapper": false, "method": false, "effect": false, "new_content_wrapped": false, "new_content": false, "settings": false } }, "description": "Inserts new content into the DOM.", "name": "insert", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.insert" }, { "comment": "", "meta": { "lineno": 484, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2124414527", "name": "wrapper", "type": "HOOK", "value": "HOOK" } }, "undocumented": true, "name": "wrapper", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~wrapper", "scope": "inner" }, { "comment": "", "meta": { "lineno": 485, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2106232034", "name": "method", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "method", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~method", "scope": "inner" }, { "comment": "", "meta": { "lineno": 486, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode147407825", "name": "effect", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "effect", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~effect", "scope": "inner" }, { "comment": "", "meta": { "lineno": 493, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode548671172", "name": "new_content_wrapped", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "new_content_wrapped", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~new_content_wrapped", "scope": "inner" }, { "comment": "", "meta": { "lineno": 494, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode822054004", "name": "new_content", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "new_content", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~new_content", "scope": "inner" }, { "comment": "", "meta": { "lineno": 507, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode902788241", "name": "new_content", "type": "NAME", "funcscope": "Drupal.ajax#commands.insert", "value": "new_content_wrapped" } }, "undocumented": true, "name": "new_content", "kind": "member", "longname": "Drupal.ajax#commands.insert~new_content", "memberof": "Drupal.ajax#commands.insert", "scope": "inner" }, { "comment": "", "meta": { "lineno": 517, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1534790040", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~settings", "scope": "inner" }, { "comment": "", "meta": { "lineno": 545, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode270071071", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax#commands.insert", "longname": "Drupal.ajax#commands.insert~settings", "scope": "inner" }, { "comment": "/**\n * Removes a chunk from the page.\n */", "meta": { "lineno": 553, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode688904182", "name": "remove", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] }, "vars": { "settings": false } }, "description": "Removes a chunk from the page.", "name": "remove", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.remove" }, { "comment": "", "meta": { "lineno": 554, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode736280314", "name": "settings", "type": "OR", "value": "OR" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "Drupal.ajax#commands.remove", "longname": "Drupal.ajax#commands.remove~settings", "scope": "inner" }, { "comment": "/**\n * Marks a chunk changed.\n */", "meta": { "lineno": 562, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2054961285", "name": "changed", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] } }, "description": "Marks a chunk changed.", "name": "changed", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.changed" }, { "comment": "/**\n * Provides an alert.\n */", "meta": { "lineno": 574, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode319413851", "name": "alert", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] } }, "description": "Provides an alert.", "name": "alert", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.alert" }, { "comment": "/**\n * Povides the jQuery css() function.\n */", "meta": { "lineno": 581, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode993921722", "name": "css", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] } }, "description": "Povides the jQuery css() function.", "name": "css", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.css" }, { "comment": "/**\n * Sets the settings that will be used for other commands in this response.\n */", "meta": { "lineno": 588, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1931289970", "name": "settings", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] } }, "description": "Sets the settings that will be used for other commands in this response.", "name": "settings", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.settings" }, { "comment": "", "meta": { "lineno": 593, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1968988860", "name": "ajax.settings", "type": "GETPROP", "value": "response.settings" } }, "undocumented": true, "name": "settings", "kind": "member", "memberof": "ajax", "longname": "ajax.settings", "scope": "static" }, { "comment": "/**\n * Attaches data using jQuery's data API.\n */", "meta": { "lineno": 600, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode2058859513", "name": "data", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] } }, "description": "Attaches data using jQuery's data API.", "name": "data", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.data" }, { "comment": "/**\n * Applies a jQuery method.\n */", "meta": { "lineno": 607, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode939602315", "name": "invoke", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] }, "vars": { "$element": false } }, "description": "Applies a jQuery method.", "name": "invoke", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.invoke" }, { "comment": "", "meta": { "lineno": 608, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode535364565", "name": "$element", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "$element", "kind": "member", "memberof": "Drupal.ajax#commands.invoke", "longname": "Drupal.ajax#commands.invoke~$element", "scope": "inner" }, { "comment": "/**\n * Restripes a table.\n */", "meta": { "lineno": 615, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "ajax.js", "code": { "id": "astnode1568368195", "name": "restripe", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "ajax", "response", "status" ] } }, "description": "Restripes a table.", "name": "restripe", "kind": "function", "memberof": "Drupal.ajax#commands", "scope": "static", "longname": "Drupal.ajax#commands.restripe" }, { "comment": "/**\n * @file JavaScript for autocomplete form fields.\n */", "meta": { "lineno": 1, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": {} }, "name": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/autocomplete.js", "kind": "file", "description": "JavaScript for autocomplete form fields.", "preserveName": true, "longname": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/autocomplete.js" }, { "comment": "/**\n * Attaches the autocomplete behavior to all required fields.\n *\n * @property {function} attach\n * Description of the attach function goes here.\n */", "meta": { "lineno": 15, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode651584550", "name": "Drupal.behaviors.autocomplete", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "description": "Attaches the autocomplete behavior to all required fields.", "properties": [ { "type": { "names": [ "function" ], "optional": null, "nullable": null, "variable": null }, "description": "Description of the attach function goes here.", "name": "attach" } ], "name": "autocomplete", "kind": "member", "memberof": "Drupal.behaviors", "longname": "Drupal.behaviors.autocomplete", "scope": "static" }, { "comment": "", "meta": { "lineno": 16, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1804005959", "name": "attach", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "context", "settings" ] }, "vars": { "acdb": false, "": false } }, "undocumented": true, "name": "attach", "kind": "function", "memberof": "Drupal.behaviors.autocomplete", "scope": "static", "longname": "Drupal.behaviors.autocomplete.attach" }, { "comment": "", "meta": { "lineno": 17, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1382875200", "name": "acdb", "type": "ARRAYLIT", "value": "ARRAYLIT" } }, "undocumented": true, "name": "acdb", "kind": "member", "memberof": "Drupal.behaviors.autocomplete.attach", "longname": "Drupal.behaviors.autocomplete.attach~acdb", "scope": "inner" }, { "comment": "", "meta": { "lineno": 19, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode110640533", "name": "uri", "type": "GETPROP", "value": "this.value" } }, "undocumented": true, "name": "uri", "kind": "member", "memberof": "", "longname": "~uri", "scope": "inner" }, { "comment": "", "meta": { "lineno": 21, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2125581447", "name": "acdb[uri]", "type": "NEW", "funcscope": "Drupal.behaviors.autocomplete.attach", "value": "NEW" } }, "undocumented": true, "name": "acdb[uri]", "kind": "member", "longname": "Drupal.behaviors.autocomplete.attach~acdb[uri]", "memberof": "Drupal.behaviors.autocomplete.attach", "scope": "inner" }, { "comment": "", "meta": { "lineno": 23, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode240990493", "name": "$input", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "$input", "kind": "member", "memberof": "", "longname": "~$input", "scope": "inner" }, { "comment": "/**\n * Handles submission of the autocomplete form.\n *\n * Prevents the form from submitting if the suggestions popup is open\n * and closes the suggestions popup when doing so.\n */", "meta": { "lineno": 43, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode886376425", "name": "Drupal.autocompleteSubmit", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] }, "vars": { "$autocomplete": false } }, "description": "Handles submission of the autocomplete form.\n\nPrevents the form from submitting if the suggestions popup is open\nand closes the suggestions popup when doing so.", "name": "autocompleteSubmit", "kind": "function", "memberof": "Drupal", "longname": "Drupal.autocompleteSubmit", "scope": "static" }, { "comment": "", "meta": { "lineno": 44, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode425645657", "name": "$autocomplete", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "$autocomplete", "kind": "member", "memberof": "Drupal.autocompleteSubmit", "longname": "Drupal.autocompleteSubmit~$autocomplete", "scope": "inner" }, { "comment": "/**\n * Constructs an autocomplete object.\n *\n * @class\n * @classdesc Represents an autocomplete object.\n */", "meta": { "lineno": 57, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode546587857", "name": "Drupal.jsAC", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "$input", "db" ] }, "vars": { "ac": false, "": false } }, "description": "Constructs an autocomplete object.", "kind": "class", "classdesc": "Represents an autocomplete object.", "name": "jsAC", "memberof": "Drupal", "longname": "Drupal.jsAC", "scope": "static" }, { "comment": "", "meta": { "lineno": 58, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1710208190", "name": "ac", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "ac", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC~ac", "scope": "inner" }, { "comment": "", "meta": { "lineno": 59, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1238943016", "name": "this.input", "type": "GETELEM", "value": "$input[0]" } }, "undocumented": true, "name": "input", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#input", "scope": "instance" }, { "comment": "", "meta": { "lineno": 60, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2061720503", "name": "this.ariaLive", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "ariaLive", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#ariaLive", "scope": "instance" }, { "comment": "", "meta": { "lineno": 61, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1576330609", "name": "this.db", "type": "NAME", "value": "db" } }, "undocumented": true, "name": "db", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#db", "scope": "instance" }, { "comment": "/**\n * Handles the \"keydown\" event.\n */", "meta": { "lineno": 72, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1729094329", "name": "Drupal.jsAC.prototype.onkeydown", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "input", "e" ] } }, "description": "Handles the \"keydown\" event.", "name": "onkeydown", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#onkeydown", "scope": "instance" }, { "comment": "", "meta": { "lineno": 74, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1223313598", "name": "e", "type": "GETPROP", "value": "window.event" } }, "undocumented": true, "name": "e", "kind": "member", "longname": "e", "scope": "global" }, { "comment": "/**\n * Handles the \"keyup\" event.\n */", "meta": { "lineno": 91, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode778152199", "name": "Drupal.jsAC.prototype.onkeyup", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "input", "e" ] } }, "description": "Handles the \"keyup\" event.", "name": "onkeyup", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#onkeyup", "scope": "instance" }, { "comment": "", "meta": { "lineno": 93, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode90556406", "name": "e", "type": "GETPROP", "value": "window.event" } }, "undocumented": true, "name": "e", "kind": "member", "longname": "e", "scope": "global" }, { "comment": "/**\n * Puts the currently highlighted suggestion into the autocomplete field.\n */", "meta": { "lineno": 130, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode713940044", "name": "Drupal.jsAC.prototype.select", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "node" ] } }, "description": "Puts the currently highlighted suggestion into the autocomplete field.", "name": "select", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#select", "scope": "instance" }, { "comment": "", "meta": { "lineno": 131, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2092843500", "name": "this.input.value", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "value", "kind": "member", "memberof": "Drupal.jsAC#input", "longname": "Drupal.jsAC#input.value", "scope": "static" }, { "comment": "/**\n * Highlights the next suggestion.\n */", "meta": { "lineno": 137, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1975260912", "name": "Drupal.jsAC.prototype.selectDown", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] }, "vars": { "lis": false } }, "description": "Highlights the next suggestion.", "name": "selectDown", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#selectDown", "scope": "instance" }, { "comment": "", "meta": { "lineno": 142, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1784591497", "name": "lis", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "lis", "kind": "member", "memberof": "Drupal.jsAC#selectDown", "longname": "Drupal.jsAC#selectDown~lis", "scope": "inner" }, { "comment": "/**\n * Highlights the previous suggestion.\n */", "meta": { "lineno": 152, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode546495707", "name": "Drupal.jsAC.prototype.selectUp", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Highlights the previous suggestion.", "name": "selectUp", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#selectUp", "scope": "instance" }, { "comment": "/**\n * Highlights a suggestion.\n */", "meta": { "lineno": 161, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1644838203", "name": "Drupal.jsAC.prototype.highlight", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "node" ] } }, "description": "Highlights a suggestion.", "name": "highlight", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#highlight", "scope": "instance" }, { "comment": "", "meta": { "lineno": 167, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode722659319", "name": "this.selected", "type": "NAME", "value": "node" } }, "undocumented": true, "name": "selected", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#selected", "scope": "instance" }, { "comment": "/**\n * Unhighlights a suggestion.\n */", "meta": { "lineno": 174, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode863947255", "name": "Drupal.jsAC.prototype.unhighlight", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "node" ] } }, "description": "Unhighlights a suggestion.", "name": "unhighlight", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#unhighlight", "scope": "instance" }, { "comment": "", "meta": { "lineno": 176, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2091197094", "name": "this.selected", "type": "FALSE", "value": "false" } }, "undocumented": true, "name": "selected", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#selected", "scope": "instance" }, { "comment": "/**\n * Hides the autocomplete suggestions.\n */", "meta": { "lineno": 183, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode678984726", "name": "Drupal.jsAC.prototype.hidePopup", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "keycode" ] }, "vars": { "popup": false, "": false } }, "description": "Hides the autocomplete suggestions.", "name": "hidePopup", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#hidePopup", "scope": "instance" }, { "comment": "", "meta": { "lineno": 186, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1406035614", "name": "this.input.value", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "value", "kind": "member", "memberof": "Drupal.jsAC#input", "longname": "Drupal.jsAC#input.value", "scope": "static" }, { "comment": "", "meta": { "lineno": 189, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1537767228", "name": "popup", "type": "GETPROP", "value": "this.popup" } }, "undocumented": true, "name": "popup", "kind": "member", "memberof": "Drupal.jsAC#hidePopup", "longname": "Drupal.jsAC#hidePopup~popup", "scope": "inner" }, { "comment": "", "meta": { "lineno": 191, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1825721919", "name": "this.popup", "type": "NULL", "value": "NULL" } }, "undocumented": true, "name": "popup", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#popup", "scope": "instance" }, { "comment": "", "meta": { "lineno": 194, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1813612981", "name": "this.selected", "type": "FALSE", "value": "false" } }, "undocumented": true, "name": "selected", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#selected", "scope": "instance" }, { "comment": "/**\n * Positions the suggestions popup and starts a search.\n */", "meta": { "lineno": 201, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode147047189", "name": "Drupal.jsAC.prototype.populatePopup", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] }, "vars": { "$input": false, "position": false } }, "description": "Positions the suggestions popup and starts a search.", "name": "populatePopup", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#populatePopup", "scope": "instance" }, { "comment": "", "meta": { "lineno": 202, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1336205011", "name": "$input", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "$input", "kind": "member", "memberof": "Drupal.jsAC#populatePopup", "longname": "Drupal.jsAC#populatePopup~$input", "scope": "inner" }, { "comment": "", "meta": { "lineno": 203, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1401780942", "name": "position", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "position", "kind": "member", "memberof": "Drupal.jsAC#populatePopup", "longname": "Drupal.jsAC#populatePopup~position", "scope": "inner" }, { "comment": "", "meta": { "lineno": 208, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1228197450", "name": "this.selected", "type": "FALSE", "value": "false" } }, "undocumented": true, "name": "selected", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#selected", "scope": "instance" }, { "comment": "", "meta": { "lineno": 209, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2096109425", "name": "this.popup", "type": "GETELEM", "value": "$('
')[0]" } }, "undocumented": true, "name": "popup", "kind": "member", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#popup", "scope": "instance" }, { "comment": "", "meta": { "lineno": 210, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1010485566", "name": "this.popup.owner", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "owner", "kind": "member", "memberof": "Drupal.jsAC#popup", "longname": "Drupal.jsAC#popup.owner", "scope": "static" }, { "comment": "", "meta": { "lineno": 212, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode649045642", "name": "top", "type": "ADD", "value": "ADD" } }, "undocumented": true, "name": "top", "kind": "member", "longname": "top", "scope": "global" }, { "comment": "", "meta": { "lineno": 213, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode950674239", "name": "left", "type": "ADD", "value": "ADD" } }, "undocumented": true, "name": "left", "kind": "member", "longname": "left", "scope": "global" }, { "comment": "", "meta": { "lineno": 214, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1380290369", "name": "width", "type": "ADD", "value": "ADD" } }, "undocumented": true, "name": "width", "kind": "member", "longname": "width", "scope": "global" }, { "comment": "", "meta": { "lineno": 215, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode286849607", "name": "display", "type": "STRING", "value": "none" } }, "undocumented": true, "name": "display", "kind": "member", "longname": "display", "scope": "global" }, { "comment": "", "meta": { "lineno": 220, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1792110529", "name": "this.db.owner", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "owner", "kind": "member", "memberof": "Drupal.jsAC#db", "longname": "Drupal.jsAC#db.owner", "scope": "static" }, { "comment": "/**\n * Fills the suggestion popup with any matches received.\n */", "meta": { "lineno": 227, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode199156736", "name": "Drupal.jsAC.prototype.found", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "matches" ] }, "vars": { "ul": false, "ac": false, "key": false, "": false } }, "description": "Fills the suggestion popup with any matches received.", "name": "found", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#found", "scope": "instance" }, { "comment": "", "meta": { "lineno": 234, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1444378545", "name": "ul", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "ul", "kind": "member", "memberof": "Drupal.jsAC#found", "longname": "Drupal.jsAC#found~ul", "scope": "inner" }, { "comment": "", "meta": { "lineno": 235, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode108973432", "name": "ac", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "ac", "kind": "member", "memberof": "Drupal.jsAC#found", "longname": "Drupal.jsAC#found~ac", "scope": "inner" }, { "comment": "", "meta": { "lineno": 236, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode454514340", "name": "key", "type": "undefined", "value": "key" } }, "undocumented": true, "name": "key", "kind": "member", "memberof": "Drupal.jsAC#found", "longname": "Drupal.jsAC#found~key", "scope": "inner" }, { "comment": "", "meta": { "lineno": 255, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1372096729", "name": "visibility", "type": "STRING", "value": "hidden" } }, "undocumented": true, "name": "visibility", "kind": "member", "longname": "visibility", "scope": "global" }, { "comment": "/**\n * Sets the status.\n */", "meta": { "lineno": 264, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2144898487", "name": "Drupal.jsAC.prototype.setStatus", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "status" ] } }, "description": "Sets the status.", "name": "setStatus", "kind": "function", "memberof": "Drupal.jsAC", "longname": "Drupal.jsAC#setStatus", "scope": "instance" }, { "comment": "/**\n * Constructs an autocomplete database object.\n *\n * @class\n * @classdesc Represents an autocomplete database object.\n */", "meta": { "lineno": 284, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode963214183", "name": "Drupal.ACDB", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "uri" ] } }, "description": "Constructs an autocomplete database object.", "kind": "class", "classdesc": "Represents an autocomplete database object.", "name": "ACDB", "memberof": "Drupal", "longname": "Drupal.ACDB", "scope": "static" }, { "comment": "", "meta": { "lineno": 285, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode190139698", "name": "this.uri", "type": "NAME", "value": "uri" } }, "undocumented": true, "name": "uri", "kind": "member", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#uri", "scope": "instance" }, { "comment": "", "meta": { "lineno": 286, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode672440717", "name": "this.delay", "type": "NUMBER", "value": "300" } }, "undocumented": true, "name": "delay", "kind": "member", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#delay", "scope": "instance" }, { "comment": "", "meta": { "lineno": 287, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1227469025", "name": "this.cache", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "undocumented": true, "name": "cache", "kind": "member", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#cache", "scope": "instance" }, { "comment": "/**\n * Performs a cached and delayed search.\n */", "meta": { "lineno": 293, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1208493905", "name": "Drupal.ACDB.prototype.search", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "searchString" ] }, "vars": { "db": false, "": false } }, "description": "Performs a cached and delayed search.", "name": "search", "kind": "function", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#search", "scope": "instance" }, { "comment": "", "meta": { "lineno": 294, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode984103443", "name": "db", "type": "THIS", "value": "this" } }, "undocumented": true, "name": "db", "kind": "member", "memberof": "Drupal.ACDB#search", "longname": "Drupal.ACDB#search~db", "scope": "inner" }, { "comment": "", "meta": { "lineno": 295, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode421539177", "name": "this.searchString", "type": "NAME", "value": "searchString" } }, "undocumented": true, "name": "searchString", "kind": "member", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#searchString", "scope": "instance" }, { "comment": "", "meta": { "lineno": 298, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2057870563", "name": "searchString", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "searchString", "kind": "member", "longname": "searchString", "scope": "global" }, { "comment": "", "meta": { "lineno": 313, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1699281096", "name": "this.timer", "type": "CALL", "value": "CALL" } }, "undocumented": true, "name": "timer", "kind": "member", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#timer", "scope": "instance" }, { "comment": "", "meta": { "lineno": 319, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode92361528", "name": "type", "type": "STRING", "value": "GET" } }, "undocumented": true, "name": "type", "kind": "member", "longname": "type", "scope": "global" }, { "comment": "", "meta": { "lineno": 320, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode263851830", "name": "url", "type": "ADD", "value": "ADD" } }, "undocumented": true, "name": "url", "kind": "member", "longname": "url", "scope": "global" }, { "comment": "", "meta": { "lineno": 321, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode248521228", "name": "dataType", "type": "STRING", "value": "json" } }, "undocumented": true, "name": "dataType", "kind": "member", "longname": "dataType", "scope": "global" }, { "comment": "", "meta": { "lineno": 322, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1369543768", "name": "success", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "matches" ] } }, "undocumented": true, "name": "success", "kind": "function", "longname": "success", "scope": "global" }, { "comment": "", "meta": { "lineno": 324, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode17131806", "name": "db.cache[searchString]", "type": "NAME", "funcscope": "Drupal.ACDB#search", "value": "matches" } }, "undocumented": true, "name": "cache[searchString]", "kind": "member", "longname": "Drupal.ACDB#search~db.cache[searchString]", "memberof": "Drupal.ACDB#search~db", "scope": "static" }, { "comment": "", "meta": { "lineno": 332, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1701693537", "name": "error", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "xmlhttp" ] } }, "undocumented": true, "name": "error", "kind": "function", "longname": "error", "scope": "global" }, { "comment": "/**\n * Cancels the current autocomplete request.\n */", "meta": { "lineno": 342, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode2049775772", "name": "Drupal.ACDB.prototype.cancel", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Cancels the current autocomplete request.", "name": "cancel", "kind": "function", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#cancel", "scope": "instance" }, { "comment": "", "meta": { "lineno": 349, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "autocomplete.js", "code": { "id": "astnode1352126502", "name": "this.searchString", "type": "STRING" } }, "undocumented": true, "name": "searchString", "kind": "member", "memberof": "Drupal.ACDB", "longname": "Drupal.ACDB#searchString", "scope": "instance" }, { "comment": "/**\n * @file JavaScript for draggable tables.\n */", "meta": { "lineno": 1, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": {} }, "name": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/tabledrag.js", "kind": "file", "description": "JavaScript for draggable tables.", "preserveName": true, "longname": "file:/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/tabledrag.js" }, { "comment": "/**\n * Indicates that columns have changed in a table.\n *\n * @param type\n * Type of change: 'show' or 'hide'.\n *\n * @event columnschange\n */", "meta": { "lineno": 53, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": {} }, "description": "Indicates that columns have changed in a table.", "params": [ { "name": "type", "description": "Type of change: 'show' or 'hide'." } ], "kind": "event", "name": "columnschange", "longname": "event:columnschange" }, { "comment": "/**\n * Attaches the table drag behavior to tables.\n *\n * @property {function} attach\n * Description of the attach function goes here.\n */", "meta": { "lineno": 12, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": { "id": "astnode412645939", "name": "Drupal.behaviors.tableDrag", "type": "OBJECTLIT", "value": "OBJECTLIT" } }, "description": "Attaches the table drag behavior to tables.", "properties": [ { "type": { "names": [ "function" ], "optional": null, "nullable": null, "variable": null }, "description": "Description of the attach function goes here.", "name": "attach" } ], "name": "tableDrag", "kind": "member", "memberof": "Drupal.behaviors", "longname": "Drupal.behaviors.tableDrag", "scope": "static" }, { "comment": "", "meta": { "lineno": 13, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": { "id": "astnode1482981398", "name": "attach", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "context", "settings" ] } }, "undocumented": true, "name": "attach", "kind": "function", "memberof": "Drupal.behaviors.tableDrag", "scope": "static", "longname": "Drupal.behaviors.tableDrag.attach" }, { "comment": "/**\n * Returns the value of foo for the current widget.\n *\n * Description of this ordinary function in the Drupal namespace goes here.\n *\n * @return\n * The value of foo in the current widget.\n */", "meta": { "lineno": 26, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": { "id": "astnode2040926578", "name": "Drupal.getCurrentFoo", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Returns the value of foo for the current widget.\n\nDescription of this ordinary function in the Drupal namespace goes here.", "returns": [ { "description": "The value of foo in the current widget." } ], "name": "getCurrentFoo", "kind": "function", "memberof": "Drupal", "longname": "Drupal.getCurrentFoo", "scope": "static" }, { "comment": "/**\n * Constructs a table drag object.\n *\n * @param {HTMLTableElement} table\n * DOM object for the table to be made draggable.\n * @param {object} tableSettings\n * Settings for the table.\n *\n * @constructor\n * @classdesc Provides the ability to drag to manipulate a table and its fields.\n */", "meta": { "lineno": 41, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": { "id": "astnode1172733546", "name": "Drupal.tableDrag", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [ "table", "tableSettings" ] } }, "description": "Constructs a table drag object.", "params": [ { "type": { "names": [ "HTMLTableElement" ], "optional": null, "nullable": null, "variable": null }, "name": "table", "description": "DOM object for the table to be made draggable." }, { "type": { "names": [ "object" ], "optional": null, "nullable": null, "variable": null }, "name": "tableSettings", "description": "Settings for the table." } ], "kind": "class", "classdesc": "Provides the ability to drag to manipulate a table and its fields.", "name": "tableDrag", "memberof": "Drupal", "longname": "Drupal.tableDrag", "scope": "static" }, { "comment": "/**\n * Hides the columns containing weight and parent form elements.\n *\n * @fires columnschange\n * @see Drupal.tableDrag.showColumns\n */", "meta": { "lineno": 51, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": { "id": "astnode1123127663", "name": "Drupal.tableDrag.prototype.hideColumns", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Hides the columns containing weight and parent form elements.", "fires": [ "event:columnschange" ], "see": [ "Drupal.tableDrag.showColumns" ], "name": "hideColumns", "kind": "function", "memberof": "Drupal.tableDrag", "longname": "Drupal.tableDrag#hideColumns", "scope": "instance" }, { "comment": "/**\n * Shows the columns containing weight and parent form elements.\n *\n * @fires columnschange\n * @see Drupal.tableDrag.hideColumns\n */", "meta": { "lineno": 71, "path": "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp", "filename": "tabledrag.js", "code": { "id": "astnode1721906704", "name": "Drupal.tableDrag.prototype.showColumns", "type": "FUNCTION", "value": "FUNCTION", "paramnames": [] } }, "description": "Shows the columns containing weight and parent form elements.", "fires": [ "event:columnschange" ], "see": [ "Drupal.tableDrag.hideColumns" ], "name": "showColumns", "kind": "function", "memberof": "Drupal.tableDrag", "longname": "Drupal.tableDrag#showColumns", "scope": "instance" }, { "files": [ "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/drupal.js", "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/ajax.js", "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/autocomplete.js", "/home/jhodgdon/Desktop/jsdoc3/jsdoc-tmp/tabledrag.js" ], "kind": "package", "longname": "package:undefined" } ]