@@ -13,11 +13,21 @@ app_ui <- function(request) {
1313 div.shinyhelper-container { right: 25px; }
1414 .shiny-output-error-validation { min-height: 50px }
1515 .table { white-space: nowrap; }
16- tbody td:first-child { left:0; z-index: 1 }"
16+ tbody td:first-child { left:0; z-index: 1 }
17+ .align-right { margin-right: 5; float: right }
18+ .align-right img { vertical-align: middle;}
19+ .header-panel { margin-top: 5px; margin-bottom: 5px }
20+ "
1721 )
18- )) ,
22+ ),
1923# Application title
20- titlePanel(paste(utils :: packageName()," : visual exploration of hierarchical clustering" )),
24+ tags $ title(paste(utils :: packageName()," : visual exploration of hierarchical clustering" ))),
25+ tags $ div(
26+ span(paste(utils :: packageName()," : visual exploration of hierarchical clustering" ),class = " h2" ),
27+ span(a(img(src = " assets/github.png" ,height = " 20px" ,width = " 20px" ),href = " http://github.com/rhenkin/visxhclust" ),
28+ class = " align-right" ),
29+ class = " header-panel"
30+ ),
2131# Sidebar -----------------------------------------------------------
2232 sidebarLayout(
2333 sidebarPanel(
@@ -42,18 +52,6 @@ app_ui <- function(request) {
4252 ),
4353type = " hidden"
4454 )
45- ),
46- fluidRow(
47- div(
48- style = " margin: 15px" ,
49- " Created at the" ,
50- a(
51- " Centre for Translational Bioinformatics" ,
52- href = " https://www.qmul.ac.uk/c4tb/" ,
53- target = " blank"
54- ),
55- " at Queen Mary, University of London."
56- )
5755 )
5856)
5957}