-
Notifications
You must be signed in to change notification settings - Fork 0
/
appSource.R
68 lines (65 loc) · 2.92 KB
/
appSource.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# layout for section "Source"
# last update: 2016-10-06
# source("uiSourceItemConfig.R")
appSource <- function(){
fluidRow(
column(12,
# uiOutput('desktopUiSourceItemsRender')
tabsetPanel(
type='tabs',
tabPanel('Browser Plugins',
fluidRow(column(11,
offset=1,
br(),
helpText('Wähle das Plugin für den von dir verwendeten Browser und folge der Anleitung zur Installation:'),
p(
img(src='chrome.png', width='50px', alt='Chrome'),
span('Chrome Erweiterung:'),
a('herunterladen', href='https://github.com/OwnYourData/ext-webhistory_chrome'),
span('('),
a('Anleitung zur Installation', href='https://github.com/OwnYourData/ext-webhistory_chrome'),
span(')')),
p(
img(src='firefox.png', width='50px', alt='Chrome'),
span('bald verfügbar')),
p(
img(src='safari.png', width='50px', alt='Chrome'),
span('bald verfügbar')))
)
)
)
)
)
}
# constants for configurable Tabs
# defaultSrcTabsName <- c('SrcTab1', 'SrcTab2')
#
# defaultSrcTabsUI <- c(
# "
# tabPanel('SrcTab1',
# textInput(inputId=ns('defaultSourceInput1'),
# 'Eingabe1:'),
# htmlOutput(outputId = ns('defaultSourceItem1'))
# )
# ",
# "
# tabPanel('SrcTab2',
# textInput(inputId=ns('defaultSourceInput2'),
# 'Eingabe2:'),
# htmlOutput(outputId = ns('defaultSourceItem2'))
# )
# "
# )
#
# defaultSrcTabsLogic <- c(
# "
# output$defaultSourceItem1 <- renderUI({
# input$defaultSourceInput1
# })
# ",
# "
# output$defaultSourceItem2 <- renderUI({
# input$defaultSourceInput2
# })
# "
# )