Add link to ReactOS project (#143)

This commit is contained in:
copy 2017-03-23 12:12:35 -05:00
parent f999d1527c
commit 591cdbe44b
2 changed files with 9 additions and 0 deletions

View file

@ -188,6 +188,8 @@
<br>
Mouse: <span id="info_mouse_enabled">No</span><br>
<!-- Keyboard: <span id="info_keyboard_enabled">-</span><br> -->
<div id="description" style="display: none"></div>
</div>
<div id="filesystem_panel" style="display: none">

View file

@ -385,6 +385,7 @@
"size": 276971224,
},
name: "ReactOS",
description: 'Running <a href="https://reactos.org/">ReactOS</a>',
},
];
@ -484,6 +485,12 @@
settings.boot_order = infos.boot_order;
}
if(!DEBUG && infos.description)
{
$("description").style.display = "block";
$("description").innerHTML = "<br>" + infos.description;
}
start_emulation(settings, done);
}