Skip to content
Snippets Groups Projects
Unverified Commit 23c94e19 authored by Todor Kondic's avatar Todor Kondic
Browse files

mk_shinyscreen: Move minor stuff around

parent 78d5c7eb
No related branches found
No related tags found
No related merge requests found
...@@ -45,13 +45,21 @@ mk_ui <- function (fn_style) { ...@@ -45,13 +45,21 @@ mk_ui <- function (fn_style) {
mk_shinyscreen <- function(wd=getwd(),fn_style=system.file('www/custom.css',package = 'shinyscreen')) { mk_shinyscreen <- function(wd=getwd(),fn_style=system.file('www/custom.css',package = 'shinyscreen')) {
roots <- mk_roots(wd) roots <- mk_roots(wd)
server <- function(input,output,session) { server <- function(input,output,session) {
## Top-level server function. ## Top-level server function.
rv <- new_rv_state(project=wd) # Container for all
# reactive values.
rf <- list() # Container for all rf <- list() # Container for all
# reactive functions. # reactive functions.
rv <- new_rv_state(project=wd) # Container for all
# reactive values.
rf <- react_conf_f(input,output,session,rv=rv,rf=rf) # Config related r. functions. rf <- react_conf_f(input,output,session,rv=rv,rf=rf) # Config related r. functions.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment