Mercurial > libervia-web
view libervia/pages/photos/album/page_meta.py @ 1358:3c5054a22e7a
browser (slideshow): better handling of controls hiding:
- use `slideshow_control` class instead of `click_to_hide`
- check parents for the presence of this class (when a click on comments icon happen, it's
the parent which has the `slideshow_control` class
- stop propagation of events when closing comments tab, to avoid hiding controls
accidentally
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 17 Sep 2020 22:50:27 +0200 |
parents | 089742e065e3 |
children | d6bcb0cf92d2 |
line wrap: on
line source
#!/usr/bin/env python3 from libervia.server.constants import Const as C from sat.core.log import getLogger log = getLogger(__name__) name = "photos_album" access = C.PAGES_ACCESS_PROFILE template = "photo/album.html" def parse_url(self, request): self.getPathArgs(request, ["service", "*path"], min_args=1, service="jid", path="") def prepare_render(self, request): data = self.getRData(request) data["thumb_limit"] = 800 data["retrieve_comments"] = True files_page = self.getPageByName("files_list") return files_page.prepare_render(self, request) def on_data_post(self, request): blog_page = self.getPageByName("blog_view") return blog_page.on_data_post(self, request)