Przeglądaj źródła

Modal functions.

dev-tmpl
Bryan Miller 6 lat temu
rodzic
commit
6f1599e29f
2 zmienionych plików z 2 dodań i 2 usunięć
  1. +1
    -0
      app/js/main.js
  2. +1
    -2
      app/js/ui/Modal.js

+ 1
- 0
app/js/main.js Wyświetl plik

@@ -1,4 +1,5 @@
import EventWindow from "/app/js/ui/EventWindow.js";
import Modal from "/app/js/ui/Modal.js";
import {NESPainter} from "/app/js/NESPainter.js";
import {NESPalette} from "/app/js/NESPalette.js";


+ 1
- 2
app/js/ui/Modal.js Wyświetl plik

@@ -45,7 +45,7 @@ class Modal{
if (el.classList.contains("modal")){
if (this.__currentModalEl !== null && force)
this.close_modal();
if this.__currentModalEl === null){
if (this.__currentModalEl === null){
el.classList.add("modal-visible");
this.__currentModalEl = el;
}
@@ -64,5 +64,4 @@ class Modal{


const instance = new Modal();
Object.freeze(instance);
export default instance;

Ładowanie…
Anuluj
Zapisz