Display only a placeholder when the poll title is default

pull/1/head
yflory 8 years ago
parent 1e1bfd275c
commit ea8667302c

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

Loading…
Cancel
Save