mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-02-13 03:34:29 +00:00
1. Release emulator version 0.13 (finally).
2. Implement new setCallback() mechanism to wrap setTimeout() and setImmediate(). 2. Minor change to P2 management; remove context-bound callbacks. 3. Reduce window size and font size for peripheral UIs. 4. Implement <label> for file names on ColdLoader Load table. 5. Correct placement and color of buttons on Console and SPO. 6. Minor wiki updates for UI changes. 7. Rework SPO implementation to eliminate ".that" properties, implement setCallback(), and fix long-standing bugs that caused flaky operation.
This commit is contained in:
@@ -1261,7 +1261,10 @@ window.addEventListener("load", function() {
|
||||
row.appendChild(cell);
|
||||
// File ID
|
||||
cell = document.createElement("td");
|
||||
cell.appendChild(document.createTextNode(tapeDir[x]));
|
||||
e = document.createElement("label");
|
||||
e.appendChild(document.createTextNode(tapeDir[x]));
|
||||
e.htmlFor = "File_" + x;
|
||||
cell.appendChild(e);
|
||||
row.appendChild(cell);
|
||||
// Load as MCP selection radio button
|
||||
cell = document.createElement("td");
|
||||
@@ -2037,7 +2040,8 @@ window.addEventListener("load", function() {
|
||||
if (!checkBrowser()) {
|
||||
$$("FileSelector").addEventListener("change", fileSelector_onChange, false);
|
||||
$$("ColdstartBtn").addEventListener("click", function(ev) {
|
||||
if (confirm("Are you sure you want to do a COLD START?")) {
|
||||
if (confirm("Are you sure you want to do a COLD START?\n" +
|
||||
"This will PERMANENTLY DELETE all files in the B5500 disk subsystem.")) {
|
||||
initializeDisk();
|
||||
}
|
||||
}, false);
|
||||
|
||||
Reference in New Issue
Block a user