From 493f22094b3c531ea4b3cf371fc28e37f26af3b0 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Wed, 28 Jan 2026 15:17:15 +0000 Subject: [PATCH] appview/pages: add script to create resizable panels elements marked with `data-resizer` will now have a few event handlers attached to them on load. when mouse operations take place on this element, the target (`data-target`) is resized along the provided axis, the width of the element can be no lesser than `data-min` and no greater than `data-max`. Signed-off-by: oppiliappan --- .../pages/templates/fragments/resizeable.html | 113 ++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 appview/pages/templates/fragments/resizeable.html diff --git a/appview/pages/templates/fragments/resizeable.html b/appview/pages/templates/fragments/resizeable.html new file mode 100644 index 00000000..b48a0d64 --- /dev/null +++ b/appview/pages/templates/fragments/resizeable.html @@ -0,0 +1,113 @@ +{{ define "fragments/resizable" }} + +{{ end }} -- 2.51.2