Skip to content

Instantly share code, notes, and snippets.

@breinbaas
Created June 24, 2022 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save breinbaas/d0ca1a8cb5b64be189f3dea3539c9741 to your computer and use it in GitHub Desktop.
Save breinbaas/d0ca1a8cb5b64be189f3dea3539c9741 to your computer and use it in GitHub Desktop.

ask for confirmation

c = confirm("Are you sure?")
  if c:
    ...

ask for confirmation with own buttons and outcome

if alert(
  content="""
  Write all you stuff here
  """,
  title="The title",
  large=True, 
  buttons=[
    ("Option 1", "Option1"),
    ("Option 2", "Option2")
  ]
) == "Option1":
  do_something()
``
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment