Skip to content

Commit 433ff23

Browse files
authored
Merge pull request #307 from slack/quickstart-links
bug(quickstart): fix quickstart links
2 parents 5badedf + 24e13d6 commit 433ff23

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

themes/deis/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ <h1><a href="/" class="logo"><img src="{{ base_url }}/static/img/svg/logo.svg" w
103103
{% endif %}
104104

105105
</body>
106-
</html>
106+
</html>

themes/deis/static/js/adjustments.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ $(document).ready(function() {
3939

4040
// insert urls into markdown
4141
$(function(){
42-
$('#AWS').attr('href', documentationBaseURL + '/quickstart/provider/aws/boot/')
43-
$('#GKE').attr('href', documentationBaseURL + '/quickstart/provider/gke/boot/')
44-
$('#Vagrant').attr('href', documentationBaseURL + '/quickstart/provider/vagrant/boot/')
42+
$('a#AWS').attr('href', documentationBaseURL + '/quickstart/provider/aws/boot/')
43+
$('a#GKE').attr('href', documentationBaseURL + '/quickstart/provider/gke/boot/')
44+
$('a#Vagrant').attr('href', documentationBaseURL + '/quickstart/provider/vagrant/boot/')
4545
});
4646

4747
});
@@ -60,4 +60,4 @@ $(document).ready(function() {
6060
"notTop" : "headroom--not-top"
6161
}
6262
}).init();
63-
}());
63+
}());

0 commit comments

Comments
 (0)