Skip to content

Commit c937d3a

Browse files
committed
urls
1 parent 583306e commit c937d3a

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,12 @@ showcases how a local version of
6363
**seasonalview** is free and open source, licensed under GPL-3. It is built on
6464
top of a large number of great open source tools. It uses
6565
[shiny](https://cran.r-project.org/package=shiny) and
66-
[shinydashboard](https://cran.r-project.org/package=shinydashboard), through
67-
which it accesses [jQuery](https://jquery.com),
68-
[bootstrap](http://getbootstrap.com) and
69-
[AdminLTE](https://almsaeedstudio.com/themes/AdminLTE/index2.html), which in
70-
turn depend on a plethora of open source web technologies themselves. It also
71-
uses [dygraphs](http://dygraphs.com), and, of course,
66+
[shinydashboard](https://cran.r-project.org/package=shinydashboard).
67+
It also
68+
uses [dygraphs](https://dygraphs.com/), and, of course,
7269
[seasonal](https://cran.r-project.org/package=seasonal),
7370
[x13binary](https://cran.r-project.org/package=x13binary) and
74-
[X-13ARIMA-SEATS](https://www.census.gov/srd/www/x13as/), the wonderful seasonal
71+
X-13ARIMA-SEATS, the wonderful seasonal
7572
adjustment software by the U.S. Census Bureau.
7673

7774
Thanks for your feedback, your ideas and bug-reports. [Contact me.](mailto:christoph.sax@gmail.com)

inst/app/server.R

+4-4
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ output$oSummaryTests <- shiny::renderUI({
177177
shiny::HTML(seasonalview:::html_tests(rModel$seas))
178178
})
179179

180-
# terminal
180+
# terminal
181181
output$oTerminal <- shiny::renderUI({
182182
m <- rModel$seas
183183
cstr <- seasonalview:::format_seascall(m$call)
@@ -186,7 +186,7 @@ output$oTerminal <- shiny::renderUI({
186186
)
187187
})
188188

189-
# x13terminal
189+
# x13terminal
190190
output$oTerminalX13 <- shiny::renderUI({
191191
m <- rModel$seas
192192
cstr <- seasonal:::deparse_spclist(m$spc)
@@ -198,7 +198,7 @@ output$oTerminalX13 <- shiny::renderUI({
198198

199199
# --- stories ------------------------------------------------------------------
200200

201-
# show dom only if code is present
201+
# show dom only if code is present
202202
output$oStory <- shiny::renderUI({
203203
story <- rStory$story
204204
view.no <- rStory$view.no
@@ -442,4 +442,4 @@ shiny::observe({
442442
}
443443
})
444444

445-
})
445+
})

0 commit comments

Comments
 (0)