fixed custom message obj

This commit is contained in:
david.zotloeterer
2015-12-01 13:36:32 +01:00
parent 935a76d16b
commit d1353e8eae
5 changed files with 8 additions and 6 deletions

View File

@@ -390,7 +390,8 @@ var ShinyApp = function() {
}
var tag = tagbuf.join("");
data = data.slice(len+1);
msgObj[tag] = data;
msgObj.custom = {};
msgObj.custom[tag] = data;
}
var evt = jQuery.Event('shiny:message');