Page 1 of 1

Mission Planner - showFormations popup cut-off

Posted: Wed 15 Jan 2025 3:10 pm
by Rejsyg
Noticed a small issue with the pop up box that shows up when changing the formations on Chrome browser. Any formations beyond "C" are cut off in the box.
Image

Appears to be on line 25515, function showFormations, in MP-Head.js. Something that doesn't quite work the same way from the Internet Explorer days, or perhaps 645 pixels isn't enough for new formations that came around?

Managed to get it readable adding this after:

Code: Select all

formdiv.style.overflowY = 'auto'; // Added vertical scrolling for overflowing content
Image

Re: Mission Planner - showFormations popup cut-off

Posted: Wed 15 Jan 2025 8:15 pm
by IV/JG7_4Shades
Thanks, I'll check it out. You could be right about it being a grandfathered "feature" of the old IE technology. DOM/Javascript was in a very different state 20 years ago when we started!

Cheers
4S

Re: Mission Planner - showFormations popup cut-off

Posted: Thu 16 Jan 2025 1:52 am
by IV/JG7_4Shades
Fixed, as you suggested. MP v7.3.272 is now the latest.

Re: Mission Planner - showFormations popup cut-off

Posted: Fri 17 Jan 2025 10:01 am
by Rejsyg
Thanks, I appreciate it :D