Display only a placeholder when the poll title is default

This commit is contained in:
yflory 2017-01-19 15:35:38 +01:00
parent 1e1bfd275c
commit ea8667302c

View File

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