annotate templates/default/_browser/__init__.py @ 30:5370c524bffd

press: add OW2 and PSES 23 confs
author Goffi <goffi@goffi.org>
date Wed, 28 Jun 2023 11:37:26 +0200
parents dc880664a8ec
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
1 from browser import bind, document
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
2
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
3
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
4 @bind("#main_menu_burger", "click")
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
5 def burger_click(ev):
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
6 document["main_menu"].classList.toggle('is-active')
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
diff changeset
7 document["main_menu_burger"].classList.toggle('is-active')