From 84ad0894be13b374b9b75e204dabea6a1579e131 Mon Sep 17 00:00:00 2001 From: Scott Main Date: Thu, 11 Jul 2013 17:26:13 -0700 Subject: [PATCH] fix markup error in download button and fix transition to install/update guide Change-Id: I54b6ed06247ff7456089058549e373a19d9e5016 --- docs/html/sdk/installing/studio.jd | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/html/sdk/installing/studio.jd b/docs/html/sdk/installing/studio.jd index eeb889639aea..2e9c4b4f2e49 100644 --- a/docs/html/sdk/installing/studio.jd +++ b/docs/html/sdk/installing/studio.jd @@ -288,7 +288,7 @@ download (or continue to use) the

Updating to 0.2.x

-

To update your existing version of Android Studio to 0.2.x, simply +

To update from Android Studio 0.1.x to 0.2.x, follow the installation instructions below and replace your existing installation.

@@ -597,7 +597,7 @@ and install Android Studio Repository. /* set up primary ACE download button */ $('#download-ide-button').show(); $('#download-ide-button').append("Download Android Studio v0.2.x" - + "
for " + os + ""); + + "
for " + os + ""); $('#download-ide-button').click(function() {return onDownload(this,true);}).attr('href', bundlename); } else { @@ -639,10 +639,9 @@ and install Android Studio Repository. function onDownloadForRealz(link) { if ($("input#agree").is(':checked')) { - $("div.sdk-terms,#sdk-terms-form,.sdk-terms-intro").hide(); - $("#main").show(function() { - location.hash = "Installing"; - }); + $("#tos").hide(); + $("#main").show(); + location.hash = "Updating"; return true; } else { $("label#agreeLabel,#bitpicker input").parent().stop().animate({color: "#258AAF"}, 200, -- 2.11.0