Skip to content

Commit

Permalink
Make melodic the default distro. (#249)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored May 23, 2018
1 parent 3e16f15 commit 7f7e551
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom/js/rosversion.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function toggleDocStatus()
}

$(document).ready(function() {
var activedistro = "lunar"; //CHANGE THIS LINE TO CHANGE THE DISTRO DISPLAYED BY DEFAULT
var activedistro = "melodic"; //CHANGE THIS LINE TO CHANGE THE DISTRO DISPLAYED BY DEFAULT
var url_distro = getURLParameter('distro');
if (url_distro) {
activedistro=url_distro;
Expand Down
4 changes: 2 additions & 2 deletions macro/Version.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
def execute(macro, args):
if args:
version = str(args)
if version.lower() == 'n-turtle':
if version.lower() == 'noetic':
return ('<span style="background-color:#FFFF00; '
'font-weight:bold; padding: 3px;">'
'Expected in N-Turtle</span>')
'Expected in Noetic Ninjemys</span>')
else:
return ('<span style="background-color:#FFFF00; '
'font-weight:bold; padding: 3px;">'
Expand Down

0 comments on commit 7f7e551

Please sign in to comment.