Revert last commit

This commit is contained in:
Winston Chang
2013-10-02 11:40:52 -05:00
parent 66cf84456d
commit c38b5c8edd

View File

@@ -109,7 +109,7 @@ Keep in mind that if your application tries to access reactive values or express
shinyServer(function(input, output) {
# Will give error
currentFib <- fib(as.numeric(input$n))
output$nthValue <- renderText({ currentFib() })
output$nthValue <- renderText({ currentFib })
})
{% endhighlight %}