In xenforo.js, FieldAdder function would remove input value after cloned.
But this also removes value (which is the label) of input type button.
I think we should not remove value of input[type="button"] ?
Code:
$clone.find('input').val('').attr('disabled', true);
But this also removes value (which is the label) of input type button.
I think we should not remove value of input[type="button"] ?