11 lines
418 B
Plaintext
11 lines
418 B
Plaintext
function listGalleries() {
|
|
window.galleryBox = elementPlace(window.g_Gallery.parentID,"GalleryBox",null,"div");
|
|
window.galleryList = elementPlace("#GalleryBox","GalleryList",null,"ul");
|
|
window.galleryList.innerHTML = "";
|
|
window.galleriesList.forEach(function(e) {
|
|
var gallery = elementPlace("#GalleryList",null,"Gallery","li");
|
|
gallery.innerHTML = e;
|
|
gallery.onclick = function () { initGalery(e); };
|
|
});
|
|
}
|