mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
19 lines
613 B
JavaScript
19 lines
613 B
JavaScript
Forms.CreateContributionForm = class CreateContributionForm extends Forms.BaseForm {
|
|
static autoInit() {
|
|
let createContributionFormElements = document.querySelectorAll('.create-contribution-form');
|
|
for (let createContributionFormElement of createContributionFormElements) {
|
|
new Forms.CreateContributionForm(createContributionFormElement);
|
|
}
|
|
}
|
|
|
|
constructor(formElement) {
|
|
super(formElement);
|
|
|
|
this.addEventListener('requestLoad', (event) => {
|
|
if (event.target.status === 201) {
|
|
window.location.href = event.target.getResponseHeader('Location');
|
|
}
|
|
});
|
|
}
|
|
};
|