mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 22:57:11 -04:00
handler/PadMessageHandler: fix minor bug I introduced
This commit is contained in:
parent
095ab1ced0
commit
8ac872bea8
1 changed files with 1 additions and 1 deletions
|
@ -767,7 +767,7 @@ function handleClientReady(client, message)
|
||||||
atext.attribs = attribsForWire.translated;
|
atext.attribs = attribsForWire.translated;
|
||||||
|
|
||||||
//check if abiword is avaiable
|
//check if abiword is avaiable
|
||||||
var abiwordAvailable = settings.abiword = null ? "yes" : "no";
|
var abiwordAvailable = settings.abiword ? "yes" : "no";
|
||||||
if(settings.abiword && os.type().indexOf("Windows") != -1)
|
if(settings.abiword && os.type().indexOf("Windows") != -1)
|
||||||
{
|
{
|
||||||
abiwordAvailable = "withoutPDF";
|
abiwordAvailable = "withoutPDF";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue