view libervia/web/pages/_browser/tools.py @ 1620:3a60bf3762ef

browser: threads and replies implementation: rel 457
author Goffi <goffi@goffi.org>
date Tue, 06 May 2025 00:40:07 +0200
parents 4ab4bc3ae462
children
line wrap: on
line source

"""Common useful tools"""
from browser import window


def is_touch_device():
    return hasattr(window, 'ontouchstart')



def remove_ids(element):
    """Recursively remove "id" attribute of element and all its descendants."""
    element.removeAttribute('id')

    for child in element.children:
        remove_ids(child)