Display only a placeholder when the poll title is default
parent
1e1bfd275c
commit
ea8667302c
|
@ -488,7 +488,7 @@ define([
|
|||
};
|
||||
|
||||
var suggestName = function (fallback) {
|
||||
return document.title || defaultName || "";
|
||||
return (document.title === defaultName) ? "" : document.title;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue