Display only a placeholder when the poll title is default

pull/1/head
yflory 2017-01-19 15:35:38 +01:00
parent 1e1bfd275c
commit ea8667302c
1 changed files with 1 additions and 1 deletions

View File

@ -488,7 +488,7 @@ define([
};
var suggestName = function (fallback) {
return document.title || defaultName || "";
return (document.title === defaultName) ? "" : document.title;
};