set title after uploading

This commit is contained in:
ansuz 2017-05-04 12:01:37 +02:00
parent 5f700c7451
commit 2232518c64
1 changed files with 4 additions and 1 deletions

View File

@ -92,6 +92,9 @@ define([
var title = document.title = res.metadata.filename; var title = document.title = res.metadata.filename;
myFile = res.content; myFile = res.content;
myDataType = res.metadata.type; myDataType = res.metadata.type;
var defaultName = Cryptpad.getDefaultName(Cryptpad.parsePadUrl(window.location.href));
APP.updateTitle(title || defaultName);
}); });
}); });
}); });
@ -147,7 +150,7 @@ define([
return data ? data.title : undefined; return data ? data.title : undefined;
}; };
var updateTitle = function (newTitle) { var updateTitle = APP.updateTitle = function (newTitle) {
Cryptpad.renamePad(newTitle, function (err, data) { Cryptpad.renamePad(newTitle, function (err, data) {
if (err) { if (err) {
console.log("Couldn't set pad title"); console.log("Couldn't set pad title");