this._callback(this, data);
}
else {
+ this._dialog.find('.fa-spinner').removeClass('fa-spinner').addClass('fa-check');
+
// display continue button
var $formSubmit = $('<div class="formSubmit" />').appendTo(this._dialog);
$('<button class="buttonPrimary">' + WCF.Language.get('wcf.global.button.next') + '</button>').appendTo($formSubmit).focus().click(function() { window.location = data.proceedURL; });
/**
* current object type index
- * @var integer
+ * @var int
*/
_index: -1,
/**
* list of object types
- * @var array<string>
+ * @var string[]
*/
- _objectTypes: [ ],
+ _objectTypes: [],
/**
* action proxy
/**
* Initializes the WCF.ACP.Importer object.
*
- * @param array<string> objectTypes
- * @param string redirectURL
+ * @param {string[]} objectTypes
+ * @param {string} redirectURL
*/
init: function(objectTypes, redirectURL) {
this._currentAction = '';