downloadContent takes type as 2nd arg

This commit is contained in:
Daniel Berteaud 2015-07-15 22:14:02 +02:00
parent bb9095f6c2
commit 01b18937af
1 changed files with 3 additions and 3 deletions

View File

@ -194,8 +194,8 @@ function linkify(text){
}
// Save content to a file
function downloadContent(filename, content){
var blob = new Blob([content], {type: 'text/html;charset=utf-8'});
function downloadContent(filename, type, content){
var blob = new Blob([content], {type: type});
saveAs(blob, filename);
}
@ -2164,7 +2164,7 @@ function initVroom(room) {
// Download chat history in a file
$('#saveChat').click(function(){
var d = new Date;
downloadContent('VROOM Tchat (' + room + ') ' + d.toLocaleString() + '.html', $('#chatHistory').html());
downloadContent('VROOM Tchat (' + room + ') ' + d.toLocaleString() + '.html', 'text/html;charset=utf-8', $('#chatHistory').html());
});
// Suspend/Play MoH