Skip to content

[Android] Friendly gesture to switch instance #1021

Open
@umgpy

Description

@umgpy

It would be nice to switch instances by tapping the screen with two or three fingers or any other gesture(s)

Translate Web Pages extension implements it like this for reference here

  // show/hide popup on 3 finger tap
  window.addEventListener("touchstart", (e) => {
    if (e.touches.length == 3) {
      if (rootElement.isConnected) {
        hidePopup();
      } else {
        showPopup();
      }
    }
  });

Metadata

Metadata

Assignees

No one assigned

    Labels

    Firefox-AndroidFor issues related to Firefox Android which isn't supported officialyenhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions