mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 17:06:16 -04:00
pad: Use null
as default for userName
, userColor
options
These options are used as strings, so it doesn't make sense to default them to a boolean value. Note that this change has no effect due to a bug in how pad options are processed; that bug will be fixed in a future commit.
This commit is contained in:
parent
61b608e264
commit
8c857a85ac
4 changed files with 8 additions and 8 deletions
|
@ -165,8 +165,8 @@ exports.padOptions = {
|
|||
showChat: true,
|
||||
showLineNumbers: true,
|
||||
useMonospaceFont: false,
|
||||
userName: false,
|
||||
userColor: false,
|
||||
userName: null,
|
||||
userColor: null,
|
||||
rtl: false,
|
||||
alwaysShowChat: false,
|
||||
chatAndUsers: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue