function Lightbox() { this.container = null; this.item = null; this.install = function() { this.container = document.getElementById("lightbox"); this.container.innerHTML += `
`; this.container.innerHTML += ``; this.item = document.getElementById("lightbox-item"); } this.load = function(file) { this.item.innerHTML = ``; this.container.style.display = 'block'; } this.close = function() { if (this.container.style.display != 'none') { this.container.style.display = 'none'; } } }