Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f973ced3 authored by Scott Main's avatar Scott Main
Browse files

docs: better message for download page when os detection fails

Change-Id: I940c0847ddc214ef36bfd0708d289cff200dfc62
parent 810e2889
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -210,11 +210,12 @@ var:sdk.linux_download
  }

  if (os) {
    $('#download-button').text("Download the SDK for " + os).removeClass("disabled");
    $('#not-supported').hide();
    $('#download-button').show();
    $('#download-button').text("Download the SDK for " + os);
    $('#download-button').click(function() {onDownload($link.get());}).attr('href', $link.attr('href'));
  } else {
    $('.pax').show();
    $('#download-button').css({'font-size':'14px'});
  }

</script>