From: Alexander Ebert Date: Wed, 27 May 2015 21:35:06 +0000 (+0200) Subject: Added missing comments X-Git-Tag: 3.0.0_Beta_1~2311 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8737e1cc739b8bb1702ea404ac40d9044d77bea5;p=GitHub%2FWoltLab%2FWCF.git Added missing comments --- diff --git a/wcfsetup/install/files/js/WoltLab/WCF/Ajax/Request.js b/wcfsetup/install/files/js/WoltLab/WCF/Ajax/Request.js index 78039062d4..5159795493 100644 --- a/wcfsetup/install/files/js/WoltLab/WCF/Ajax/Request.js +++ b/wcfsetup/install/files/js/WoltLab/WCF/Ajax/Request.js @@ -1,9 +1,22 @@ +/** + * Versatile AJAX request handling. + * + * In case you want to issue JSONP requests, please use `AjaxJsonp` instead. + * + * @author Alexander Ebert + * @copyright 2001-2015 WoltLab GmbH + * @license GNU Lesser General Public License + * @module WoltLab/WCF/Ajax/Request + */ define(['Core', 'Language', 'DOM/ChangeListener', 'DOM/Util', 'UI/Dialog', 'WoltLab/WCF/Ajax/Status'], function(Core, Language, DOMChangeListener, DOMUtil, UIDialog, AjaxStatus) { "use strict"; var _didInit = false; var _ignoreAllErrors = false; + /** + * @constructor + */ function AjaxRequest(options) { this._data = null; this._options = {};