mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
Remove unused parameter noDocType
.
My editor also auto-stripped some EOL whitespace.
This commit is contained in:
parent
879ae7c67d
commit
a0403ffc22
2 changed files with 7 additions and 7 deletions
|
@ -76,7 +76,7 @@ exports.doExport = function(req, res, padId, type)
|
|||
}
|
||||
else if(type == "txt")
|
||||
{
|
||||
exporttxt.getPadTXTDocument(padId, req.params.rev, false, function(err, txt)
|
||||
exporttxt.getPadTXTDocument(padId, req.params.rev, function(err, txt)
|
||||
{
|
||||
if(ERR(err)) return;
|
||||
res.send(txt);
|
||||
|
|
|
@ -271,7 +271,7 @@ function getTXTFromAtext(pad, atext, authorColors)
|
|||
}
|
||||
exports.getTXTFromAtext = getTXTFromAtext;
|
||||
|
||||
exports.getPadTXTDocument = function (padId, revNum, noDocType, callback)
|
||||
exports.getPadTXTDocument = function (padId, revNum, callback)
|
||||
{
|
||||
padManager.getPad(padId, function (err, pad)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue