From 98ce450f11768263f15e152d13246c52f3da1eb5 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 16 Feb 2026 10:42:01 +0000 Subject: [PATCH] Increase popup window width for better content display --- anatomy/static/js/anatomy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anatomy/static/js/anatomy.js b/anatomy/static/js/anatomy.js index fd9203af..eb19a068 100644 --- a/anatomy/static/js/anatomy.js +++ b/anatomy/static/js/anatomy.js @@ -768,7 +768,7 @@ window.setUpDicom = setUpDicom3d; function create_popup_window(url, title) { - newwindow = window.open(url, title, 'height=800,width=600'); + newwindow = window.open(url, title, 'height=800,width=800'); if (window.focus) { newwindow.focus() }