OSDN Git Service

docs: better message for download page when os detection fails
authorScott Main <smain@google.com>
Thu, 28 Jun 2012 18:56:01 +0000 (11:56 -0700)
committerScott Main <smain@google.com>
Thu, 28 Jun 2012 18:56:01 +0000 (11:56 -0700)
Change-Id: I940c0847ddc214ef36bfd0708d289cff200dfc62

tools/droiddoc/templates-sdk/sdkpage.cs

index 17c1354..c0f3be7 100644 (file)
@@ -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>