소스 검색

Tweak gadget text input title and placeholder text

tags/v0.1.0^2
Garrick Aden-Buie 8 년 전
부모
커밋
1ac540eeee
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      R/regex_gadget.R

+ 7
- 1
R/regex_gadget.R 파일 보기

@@ -51,7 +51,13 @@ regex_gadget <- function(text = NULL) {
"Text", icon = icon('file-text-o'),
miniContentPanel(
fillCol(
textAreaInputAlt('text', label = "Text", value = paste(text, collapse = "\n"), resize = "both", width = "100%", height="90%")
textAreaInputAlt('text',
label = "Text to search or parse",
value = paste(text, collapse = "\n"),
resize = "both",
width = "100%",
height="90%",
placeholder = "Paste, enter, or edit your sample text here.")
)
)
),

Loading…
취소
저장