-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
executable file
·21 lines (21 loc) · 1.21 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
source("user_interface.R")
dbHeader <- dashboardHeader(titleWidth = 140)
dbHeader$children[[2]]$children<-shiny::span(shiny::tagList(shiny::tags$img(src='wos-logo.png',
height='45',
width='125')))
shinyUI(dashboardPage(title="WoS bibliography manager",
dbHeader,
dashboardSidebar(wosMenu, width = 125, collapsed = F),
dashboardBody(useShinyjs(),
shiny::tags$head(shiny::tags$link(rel = "shortcut icon",
href = "lighthouse-stroke.png")),
shinyDashboardThemes(theme = "grey_dark"),
tabItems(
tabBibs,
tabResearchers,
tabJournals,
tabLibraryImport,
tabKeywordsAnalysis,
tabTopicAnalysis,
tabAbout
))))