diff --git a/content/download.html b/content/download.html index 18c68b22..336e38a9 100644 --- a/content/download.html +++ b/content/download.html @@ -14,12 +14,14 @@

ReactOS {{< reactos-version >}}

-
Download Boot CD
-

Alternatively, you can download LiveCD

+
Download Boot Media
-

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 Boot Media offer?

+

The ReactOS Boot Media offers you the possibility of either installing ReactOS on your machine, or alternatively, trying ReactOS without the need for installation. +Once you start the Boot Media, 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 and gives no guarantee of stability, safety of your files or working at all.

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 +44,7 @@ - + diff --git a/static/js/download.js b/static/js/download.js index d5c9bee4..09abf27d 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){ $("#bootcdModal").modal("toggle"); url = bootcd; - if (e.target.textContent == "LiveCD") { - url = livecd; - } $('.modal-footer a').attr("href", url) -}); \ No newline at end of file +});