From 8737e1cc739b8bb1702ea404ac40d9044d77bea5 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 27 May 2015 23:35:06 +0200 Subject: [PATCH] Added missing comments --- .../install/files/js/WoltLab/WCF/Ajax/Request.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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 = {}; -- 2.20.1