Fixed save button being in the wrong place and made submit button hide on editing.

This commit is contained in:
Ajay Ramachandran
2019-07-30 21:07:27 -04:00
parent a2b4f8d141
commit 85518d8130
2 changed files with 7 additions and 3 deletions

View File

@@ -451,6 +451,9 @@ function runThePopup() {
//already open
return;
}
//hide submit button
document.getElementById("submitTimesContainer").style.display = "none";
let sponsorTimeContainer = document.getElementById("sponsorTimeContainer" + index);
@@ -512,8 +515,7 @@ function runThePopup() {
let editButton = document.getElementById("sponsorTimeEditButton" + index);
let sponsorTimesContainer = document.getElementById("sponsorTimesContainer");
editButton.remove();
sponsorTimesContainer.appendChild(saveButton);
sponsorTimesContainer.replaceChild(saveButton, editButton);
}
function saveSponsorTimeEdit(index) {
@@ -531,6 +533,8 @@ function runThePopup() {
chrome.storage.sync.set({[sponsorTimeKey]: sponsorTimes});
displaySponsorTimes();
showSubmitTimesIfNecessary();
}
//deletes the sponsor time submitted at an index