Skip to content

Commit

Permalink
proper footer including base
Browse files Browse the repository at this point in the history
  • Loading branch information
mose committed Jan 29, 2016
1 parent 321a064 commit ba350c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/public/js/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ ready( () => {
} else {
build_params(meat, node, j);
rebuild_nav(node);
update_footer('/v1/node/' + node);
update_footer('/v1/' + base + '/node/' + node);
but = document.querySelector('.showparams');
addClass(but, 'focus');
}
Expand All @@ -162,7 +162,7 @@ ready( () => {
} else {
build_info(meat, node, j);
rebuild_nav(node);
update_footer('/v1/node/' + node + '/info');
update_footer('/v1/' + base + '/node/' + node + '/info');
but = document.querySelector('.showinfo');
addClass(but, 'focus');
}
Expand All @@ -181,7 +181,7 @@ ready( () => {
} else {
build_params(meat, node, j);
rebuild_nav(node);
update_footer('/v1/node/' + node + '/allparams');
update_footer('/v1/' + base + '/node/' + node + '/allparams');
but = document.querySelector('.showallparams');
addClass(but, 'focus');
}
Expand Down

0 comments on commit ba350c4

Please sign in to comment.