move up
This commit is contained in:
parent
81a3a3d4b2
commit
2ca02bad80
1 changed files with 7 additions and 9 deletions
|
|
@ -157,9 +157,6 @@ class CreateOfferModal {
|
|||
|
||||
this.trustCheckboxes.render();
|
||||
|
||||
breaksssssss();
|
||||
//Continue moving components up here
|
||||
|
||||
const otherDiv = document.createElement('div');
|
||||
otherDiv.id = 'other-area';
|
||||
otherDiv.className = 'create-offer-step';
|
||||
|
|
@ -168,6 +165,13 @@ class CreateOfferModal {
|
|||
otherDiv.appendChild(otherHeading);
|
||||
controls.appendChild(otherDiv);
|
||||
|
||||
this.bigNotesCheckbox = new BigNotesCheckbox({
|
||||
parentElement: otherDiv,
|
||||
});
|
||||
|
||||
this.bigNotesCheckbox.render();
|
||||
//Continue moving components up here
|
||||
|
||||
const submitButtonArea = document.createElement('div');
|
||||
submitButtonArea.classList.add('submit-button-area');
|
||||
this.publishOfferButton = new PublishOfferButton({
|
||||
|
|
@ -195,12 +199,6 @@ class CreateOfferModal {
|
|||
modalRoot.appendChild(modal);
|
||||
|
||||
this.parentElement.appendChild(this.element);
|
||||
|
||||
this.bigNotesCheckbox = new BigNotesCheckbox({
|
||||
parentElement: document.getElementById('other-area'),
|
||||
});
|
||||
|
||||
this.bigNotesCheckbox.render();
|
||||
}
|
||||
|
||||
toggle() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue