Use a textarea instead of a prompt for export to prevent truncation in

Chrome.
This commit is contained in:
Michael
2013-11-14 21:33:14 -05:00
parent c27430f29e
commit 16824386eb
3 changed files with 41 additions and 19 deletions
+4
View File
@@ -611,6 +611,10 @@ var Events = {
$('<div>').text(scene.text[i]).appendTo(desc);
}
if(scene.textarea) {
$('<textarea>').val(scene.textarea).appendTo(desc);
}
// Draw any loot
if(scene.loot) {
Events.drawLoot(scene.loot);