mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 08:51:21 +00:00
allow negative values for synctex positions
This commit is contained in:
parent
cbb4ee88cc
commit
c44f33ce99
1 changed files with 2 additions and 2 deletions
|
@ -151,9 +151,9 @@ module.exports = CompileController =
|
|||
{page, h, v} = req.query
|
||||
if not page?.match(/^\d+$/)
|
||||
return next(new Error("invalid page parameter"))
|
||||
if not h?.match(/^\d+\.\d+$/)
|
||||
if not h?.match(/^-?\d+\.\d+$/)
|
||||
return next(new Error("invalid h parameter"))
|
||||
if not v?.match(/^\d+\.\d+$/)
|
||||
if not v?.match(/^-?\d+\.\d+$/)
|
||||
return next(new Error("invalid v parameter"))
|
||||
# whether this request is going to a per-user container
|
||||
CompileController._compileAsUser req, (error, user_id) ->
|
||||
|
|
Loading…
Add table
Reference in a new issue