diff options
author | Scott Main <smain@google.com> | 2013-06-14 11:02:41 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-06-14 11:02:41 -0700 |
commit | 3b0205b7601a6fa3d7abf6dbc5a60223981103cc (patch) | |
tree | d68af3fcb684860f4302183cb5151e8b024da20f /docs | |
parent | 6e5942894a40ed2a199f25bf4e8a215c95d2c79b (diff) | |
parent | 0b3fe0785c0c6ff0ce834c06b6828f884a658730 (diff) | |
download | frameworks_base-3b0205b7601a6fa3d7abf6dbc5a60223981103cc.zip frameworks_base-3b0205b7601a6fa3d7abf6dbc5a60223981103cc.tar.gz frameworks_base-3b0205b7601a6fa3d7abf6dbc5a60223981103cc.tar.bz2 |
am 0b3fe078: am a17201a8: am 7190a059: fix transition from download to install instructions
* commit '0b3fe0785c0c6ff0ce834c06b6828f884a658730':
fix transition from download to install instructions
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/sdk/installing/studio.jd | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/html/sdk/installing/studio.jd b/docs/html/sdk/installing/studio.jd index 1ed84bd..8825bcc 100644 --- a/docs/html/sdk/installing/studio.jd +++ b/docs/html/sdk/installing/studio.jd @@ -493,9 +493,8 @@ Check for updates</strong>).</p> function onDownloadForRealz(link) { if ($("input#agree").is(':checked')) { - $("div.sdk-terms").slideUp(); - $("#sdk-terms-form,.sdk-terms-intro").fadeOut('fast'); - $("#main").fadeIn('fast', function() { + $("div.sdk-terms,#sdk-terms-form,.sdk-terms-intro").hide(); + $("#main").show(function() { location.hash = "Installing"; }); return true; |