mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Renamed upload button (#563)
* Renamed upload button * Renamed upload button in code
This commit is contained in:
parent
23f1798d20
commit
8778ddd5c5
2 changed files with 6 additions and 6 deletions
|
@ -607,9 +607,9 @@ const startAceWebsocket = () => {
|
|||
editor.session.setAnnotations(arr);
|
||||
|
||||
if(arr.length) {
|
||||
saveUploadButton.classList.add('disabled');
|
||||
editorUploadButton.classList.add('disabled');
|
||||
} else {
|
||||
saveUploadButton.classList.remove('disabled');
|
||||
editorUploadButton.classList.remove('disabled');
|
||||
}
|
||||
|
||||
aceValidationRunning = false;
|
||||
|
@ -646,7 +646,7 @@ editor.session.setOption('tabSize', 2);
|
|||
editor.session.setOption('useWorker', false);
|
||||
|
||||
const saveButton = editModalElem.querySelector(".save-button");
|
||||
const saveUploadButton = editModalElem.querySelector(".save-upload-button");
|
||||
const editorUploadButton = editModalElem.querySelector(".editor-upload-button");
|
||||
const saveEditor = () => {
|
||||
fetch(`./edit?configuration=${activeEditorConfig}`, {
|
||||
credentials: "same-origin",
|
||||
|
@ -698,14 +698,14 @@ setInterval(() => {
|
|||
}, 100);
|
||||
|
||||
saveButton.addEventListener('click', saveEditor);
|
||||
saveUploadButton.addEventListener('click', saveEditor);
|
||||
editorUploadButton.addEventListener('click', saveEditor);
|
||||
|
||||
document.querySelectorAll(".action-edit").forEach((btn) => {
|
||||
btn.addEventListener('click', (e) => {
|
||||
activeEditorConfig = e.target.getAttribute('data-node');
|
||||
const modalInstance = M.Modal.getInstance(editModalElem);
|
||||
const filenameField = editModalElem.querySelector('.filename');
|
||||
editModalElem.querySelector(".save-upload-button").setAttribute('data-node', activeEditorConfig);
|
||||
editorUploadButton.setAttribute('data-node', activeEditorConfig);
|
||||
filenameField.innerHTML = activeEditorConfig;
|
||||
|
||||
fetch(`./edit?configuration=${activeEditorConfig}`, {credentials: "same-origin"})
|
||||
|
|
|
@ -440,7 +440,7 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="waves-effect waves-green btn-flat save-button">Save</a>
|
||||
<a class="modal-close waves-effect waves-green btn-flat action-upload save-upload-button">Save & Upload</a>
|
||||
<a class="modal-close waves-effect waves-green btn-flat action-upload editor-upload-button">Upload</a>
|
||||
<a class="modal-close waves-effect waves-green btn-flat">Close</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue