diff --git a/content/download.html b/content/download.html index f35c3f78..71dabb81 100644 --- a/content/download.html +++ b/content/download.html @@ -14,12 +14,15 @@

ReactOS {{< reactos-version >}}

-
Download Boot CD
-

Alternatively, you can download LiveCD

+
Download Installation Medium
-

How to choose?

-

If you wish to install ReactOS on your machine, then Boot CD is the right option for you. Boot CD will direct you to a setup environment, please follow the instructions given on the screen. Live CD is useful if you don't plan to keep ReactOS on your computer for a longer period of time. It allows you to explore ReactOS in a temporary environment that will be reset in a restart. Please note, that ReactOS is still in alpha and gives no guarantee of stability, safety of your files or working at all.

+

What does the Installation Medium offer?

+

The ReactOS Installation Medium offers you the possibility of either installing ReactOS on your machine, or alternatively, trying ReactOS without the need for installation. +Once you start the Installation Medium, it presents a menu allowing you to select what you want to do: either running the Setup environment, or the Live environment for testing. +Select the Setup environment if you wish to install ReactOS on your machine. You will be directed to the setup program, please follow the instructions given on the screen. +On the other hand, the Live environment is useful if you don't plan to install or keep ReactOS on your computer for a longer period of time. It allows you to explore ReactOS in a temporary environment that will be reset at restart. +Please note that ReactOS is still in alpha state and provides no guarantee of stability, of safety for your files, or that it will work at all on your hardware.

What do I do with this?

ReactOS Wiki is an ideal source of information, it will help you setup ReactOS in your desired environment. "Installing ReactOS" page should help you get started.

@@ -42,7 +45,7 @@ - + diff --git a/static/js/download.js b/static/js/download.js index d5c9bee4..44f0efa1 100644 --- a/static/js/download.js +++ b/static/js/download.js @@ -1,12 +1,7 @@ var bootcd = $("#bootcd").attr("href"); -var livecd = $("#livecd").attr("href"); $("#bootcd").removeAttr("href"); -$("#livecd").removeAttr("href"); $(".modalbtn").click(function(e){ + e.preventDefault(); $("#bootcdModal").modal("toggle"); - url = bootcd; - if (e.target.textContent == "LiveCD") { - url = livecd; - } - $('.modal-footer a').attr("href", url) -}); \ No newline at end of file + $('.modal-footer a').attr("href", bootcd) +});