Skip to content

Commit

Permalink
logo should refresh page, and seperate help link should exist
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Inman-Semerau <luke.semerau@gmail.com>
  • Loading branch information
ddavison authored and lukeis committed Sep 3, 2013
1 parent aa67ba6 commit 03343e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion java/server/src/org/openqa/grid/images/console-beta.css
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,9 @@ ul a {
}

#hubConfig{
min-width:55%;}
min-width:55%;}

a#helplink {
text-decoration: none;
color: #FFF;
}
Original file line number Diff line number Diff line change
Expand Up @@ -197,11 +197,11 @@ private Object getRequestQueue() {
private Object getHeader() {
StringBuilder builder = new StringBuilder();
builder.append("<div id='header'>");
builder.append("<h1><a href='http://code.google.com/p/selenium/wiki/Grid2' >Selenium</a></h1>");
builder.append("<h1><a href='/grid/console'>Selenium</a></h1>");
builder.append("<h2>Grid Console v.");
builder.append(coreVersion).append(coreRevision);
builder.append("</h2>");
builder.append("<div>.</div>");
builder.append("<div><a id='helplink' target='_blank' href='http://code.google.com/p/selenium/wiki/Grid2'>Help</a></div>");
builder.append("</div>");
builder.append("");
return builder.toString();
Expand Down

0 comments on commit 03343e5

Please sign in to comment.