mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 01:36:57 +00:00
Merge branch 'master' of https://github.com/sharelatex/web-sharelatex
This commit is contained in:
commit
4bcc9fb5c9
4 changed files with 7 additions and 2 deletions
|
@ -45,7 +45,7 @@ module.exports = TemplatesWebController =
|
|||
disposition = "inline"
|
||||
else
|
||||
disposition = "attachment"
|
||||
res.header({"content-disposition": "#{disposition}; filename=#{name}.#{req.params.file_type};"})
|
||||
res.header({"content-disposition": "#{disposition}; filename=\"#{name.replace("\"", "-")}.#{req.params.file_type}\""})
|
||||
|
||||
logger.log url:url, template_name: name, disposition: disposition, "proxying request to templates api"
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@ define [
|
|||
chat.state.loading = false
|
||||
if messages.length < MESSAGE_LIMIT
|
||||
chat.state.atEnd = true
|
||||
if !messages.reverse?
|
||||
Raven?.captureException(new Error("messages has no reverse property"), { messages: messages })
|
||||
messages.reverse()
|
||||
prependMessages(messages)
|
||||
chat.state.nextBeforeTimestamp = chat.state.messages[0]?.timestamp
|
||||
|
|
|
@ -230,6 +230,8 @@ define [
|
|||
}
|
||||
|
||||
_aceDeltaToSimpleDelta: (aceDelta, docLines) ->
|
||||
if !aceDelta.range?
|
||||
Raven?.captureException(new Error("Missing range in aceDelta"), { delta: aceDelta })
|
||||
start = aceDelta.range.start
|
||||
linesBefore = docLines.slice(0, start.row)
|
||||
position =
|
||||
|
@ -258,7 +260,7 @@ define [
|
|||
remove: aceDelta.lines.join("\n") + "\n"
|
||||
}
|
||||
else
|
||||
throw "Unknown Ace action: #{aceDelta.action}"
|
||||
throw new Error("Unknown Ace action: #{aceDelta.action}")
|
||||
|
||||
_simplePositionToAcePosition: (position, docLines) ->
|
||||
column = 0
|
||||
|
|
|
@ -2,6 +2,7 @@ define [
|
|||
"main/project-list/index"
|
||||
"main/user-details"
|
||||
"main/account-settings"
|
||||
"main/account-upgrade"
|
||||
"main/templates"
|
||||
"main/plans"
|
||||
"main/group-members"
|
||||
|
|
Loading…
Reference in a new issue