Wars & Conflicts Through Time Simulator

Filtered Conflicts

  • Adjust filters and click "Show Conflicts".

Conflict Details

Select a conflict from the list to see details.

Timeline (Selected Period)

No conflicts matched the selected filters for this report.

'; } else { currentlyDisplayedConflicts.forEach(conflict => { pdfHtmlContent += `

${conflict.name}

Period: ${formatYear(conflict.startYear)} – ${formatYear(conflict.endYear)}

Region(s): ${conflict.regions.join(', ')}

Key Belligerents: ${formatBelligerents(conflict.belligerents)}

Summary: ${conflict.summary}

`; }); } pdfHtmlContent += ``; const pdfWindow = window.open('', '_blank'); if (pdfWindow) { pdfWindow.document.open(); pdfWindow.document.write(pdfHtmlContent); pdfWindow.document.close(); } else { alert("Failed to open printable report window. Please check your browser's pop-up blocker settings."); } }); // --- Event Listeners --- showConflictsBtn.addEventListener('click', displayConflicts); // --- Initial Setup --- populateRegionFilter(); displayConflicts(); });
Scroll to Top