explicitliy specify h1 element in headers

This commit is contained in:
JJ Allaire
2012-07-21 12:03:00 -07:00
parent 0acb5f5857
commit 5384b3a8c0
4 changed files with 10 additions and 8 deletions

View File

@@ -2,8 +2,9 @@ library(shiny)
shinyUI(
applicationPage(
headerPanel("Example 1: All Caps"),
headerPanel(
h1("Example 1: All Caps")
),
sidebarPanel(
textInput("val", label = "Input:", value = "Hello, World!")

View File

@@ -3,7 +3,9 @@ library(shiny)
shinyUI(
applicationPage(
headerPanel("Example 2: Computing Hashes"),
headerPanel(
h1("Example 2: Computing Hashes")
),
sidebarPanel(
textInput("input1", label="Input:", value="Hello, world!"),

View File

@@ -5,7 +5,9 @@ library(shiny)
shinyUI(
applicationPage(
headerPanel("Example 3: Distributions"),
headerPanel(
h1("Example 3: Distributions")
),
sidebarPanel(
selectListInput("dist", "Distibution type:",