Reverting Ignite 3 alpha download fix
diff --git a/download.html b/download.html
index e9e8067..c640cbf 100644
--- a/download.html
+++ b/download.html
@@ -582,7 +582,7 @@
                     <td style="white-space: nowrap;">2021-01-11</td>
                     <td style="white-space: nowrap;">
                         Unix: <a download
-                                id="apache_ignite_text_download"
+                                id="apache_ignite_binary_fabric_download"
                                 href="[preferred]/[distdir]/3.0.0-alpha1/ignite"
                                 onclick="gtag('event',  'download', {'event_category': 'apache_ignite_fabric_download', 'event_label': 'apache-ignite-3.0.0-alpha1'});">ignite</a>
 
@@ -914,19 +914,6 @@
     WebFontConfig = {
         google: {families: ['Open+Sans:300,400,600,700&display=swap']}
     };
-    document.querySelector('#apache_ignite_text_download').addEventListener('click', async (e) => {
-        e.preventDefault()
-        let blob = await fetch(e.currentTarget.getAttribute('href')).then(r => r.blob());
-        let url = window.URL.createObjectURL(blob);
-        var a = document.createElement("a");
-        document.body.appendChild(a);
-        a.style = "display: none";
-        a.href = url;
-        a.download = "text";
-        a.click();
-        window.URL.revokeObjectURL(url);
-        return false;
-    })
     (function () {
         var wf = document.createElement('script');
         wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';