- Add welcome notification in preview mode.
- Correct
process_heatmap()
doc. - Add
options("shinyHeatmap.debug" = TRUE)
to display useful debugging messages. Only for developers.
- Adjust z-index for pushbar and heatmap canvas.
- Remove delay in R code.
- More space between heatmap buttons (toggle and options).
- Add filter to select the platform where the app was accessed (mobile, desktop). This avoids to mix incompatible logs.
- The slider to select dates has been replaced by a selectInput. We can display dates in the input choices which is easier to read (Note: the slider animation capability is lost).
- Introducing
process_heatmap()
, a wrapper aroundrecord_heatmap()
anddownload_heatmap()
.process_heatmap()
will record the heatmap by default unless you specify a query parameter?get_heatmap
, which will allow to display the results. - You can now toggle the heatmap visibility while running
record_heatmap()
so as to be able to change page in multi-tabs apps. This is necessary because the heatmap z-index is set to the maximum and you can't click anywhere else after, expect the toggle heatmap button.
- Added new
trigger
parameter forrecord_heatmap()
anddownload_heatmap()
as first parameters. This allows to record heatmaps for multi-tabs apps like withshiny::navbarPage()
(Seeinst/examples/navbar
). Leavetrigger
NULL for one page apps.trigger
expects a reactive expression likereactive(input$navbar)
. - The
target
value is now removed fromrecord_heatmap()
. Instead, it is written in a filewww/*/target.txt
byrecord_heatmap()
, and subsequently read byrecord_heatmap()
. For old apps without this file, you can manually create onetouch www/<WHATEVER_SUBFOLDER>/target.txt
and type in the DOM selector value, for instance.container-fluid
.
- Added a
NEWS.md
file to track changes to the package.