Skip to content

Commit

Permalink
Fix incorrect image reference
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Mar 21, 2014
1 parent ddbae16 commit facc2a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clientdata/server.r
@@ -1,8 +1,8 @@
shinyServer(function(input, output, session) {

output$image <- renderImage({
width <- session$clientData$output_plot_width
height <- session$clientData$output_plot_height
width <- session$clientData$output_image_width
height <- session$clientData$output_image_height

# A temp file to save the output. This file will be removed later by renderImage
outfile <- tempfile(fileext='.png')
Expand Down

0 comments on commit facc2a1

Please sign in to comment.