mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
21 lines
536 B
CoffeeScript
21 lines
536 B
CoffeeScript
define [
|
|
"ide/pdfng/controllers/PdfController"
|
|
"ide/pdfng/controllers/PdfViewToggleController"
|
|
"ide/pdfng/directives/pdfJs"
|
|
], () ->
|
|
class PdfManager
|
|
constructor: (@ide, @$scope) ->
|
|
@$scope.pdf =
|
|
url: null # Pdf Url
|
|
error: false # Server error
|
|
timeout: false # Server timed out
|
|
failure: false # PDF failed to compile
|
|
compiling: false
|
|
uncompiled: true
|
|
logEntries: []
|
|
logEntryAnnotations: {}
|
|
rawLog: ""
|
|
view: null # 'pdf' 'logs'
|
|
showRawLog: false
|
|
highlights: []
|
|
position: null
|