Refactors the browser UI into a reusable `CO_Browser.create()` module and adds embedded modal styling so MULTIPLAYER opens inside the main menu instead of swapping to a separate view. Updates main-menu JS/CSS to host, animate, and route input for the browser panel while keeping nav and prompts in sync. On the C++ side, PrismaUI now drives browser show/hide and event dispatch through the main menu view, and `ServerBrowserBridge::SetView()` was added so bridge events target the active host view.
25 lines
889 B
HTML
25 lines
889 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Commonwealth Online</title>
|
|
<link rel="stylesheet" href="./styles.css">
|
|
</head>
|
|
<body>
|
|
<script src="./components/layout.js"></script>
|
|
<script src="./components/theme.js"></script>
|
|
<script src="./components/mock-data.js"></script>
|
|
<script src="./components/tabs.js"></script>
|
|
<script src="./components/filters.js"></script>
|
|
<script src="./components/server-list.js"></script>
|
|
<script src="./components/server-details.js"></script>
|
|
<script src="./components/controller-glyphs.js"></script>
|
|
<script src="./components/controller-icons.js"></script>
|
|
<script src="./components/controller-prompts.js"></script>
|
|
<script src="./components/direct-connect.js"></script>
|
|
<script src="./components/hover.js"></script>
|
|
<script src="./browser.js"></script>
|
|
<script src="./app.js"></script>
|
|
</body>
|
|
</html>
|