Skip to content

Commit

Permalink
Fix querystring in containerPath
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsali committed Apr 10, 2018
1 parent 688da5f commit 1b09144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/app.html
Expand Up @@ -59,7 +59,7 @@
var source = $("#shinyframe").attr("src");
if (source == "") {
$(".loading").show();
$.post(window.location.pathname, function(containerPath) {
$.post(window.location.pathname + window.location.search, function(containerPath) {
$("#shinyframe").attr("src", containerPath);
$(".loading").fadeOut("slow");
}).fail(function(request) {
Expand Down

0 comments on commit 1b09144

Please sign in to comment.