overleaf/services/web/app/views/project/editor.jade

91 lines
2.1 KiB
Text
Raw Normal View History

2014-02-12 05:23:40 -05:00
extends ../layout
block content
#loadingScreen
h3 Loading...
p#loadingMessage Loading editor
#errorMessages
#connectionLostMessage(style="display: none;")
| Lost connection.
span#trying-reconnect
| Reconnecting in
span#reconnection-countdown ?
| seconds.
a(href='#')#try-reconnect-now Try now.
span#reconnecting
| Reconnecting...
#savingProblems(style="display: none")
| Saving...
div#toolbar.sidebar-navigation
ul#tabs
#toolbar-footer
#tab-content.tab-content
include ../templates
include ../templates/dropbox
script(src='/socket.io/socket.io.js')
2014-06-04 11:28:20 -04:00
script(type='text/javascript').
2014-02-12 05:23:40 -05:00
window.sharelatex = !{sharelatexObject};
window.userSettings = !{userSettingsObject};
window.user = !{userObject};
window.csrfToken = "!{csrfToken}";
window.requirejs = {
"paths" : {
"underscore": "libs/underscore",
2014-03-07 06:24:11 -05:00
"mathjax": "https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML",
"moment": "libs/moment"
2014-02-12 05:23:40 -05:00
},
"urlArgs" : "fingerprint=#{fingerprint(jsPath + 'ide.js')}",
"waitSeconds": 0,
"shim": {
"libs/backbone": {
deps: ["libs/underscore"]
},
"libs/pdfListView/PdfListView": {
deps: ["libs/pdf"]
},
"libs/pdf": {
deps: ["libs/compatibility"]
}
}
};
2014-06-04 11:28:20 -04:00
script(type='text/javascript').
ga('send', 'event', 'editor-interaction', 'editor-opened')
2014-02-12 05:23:40 -05:00
- locals.supressDefaultJs = true
- var fingerprintedPath = fingerprint(jsPath+'libs/pdf.worker.js')
- var pdfJsWorkerPath = jsPath+'libs/pdf.worker.js?fingerprint='+fingerprintedPath
script
window.sharelatex.pdfJsWorkerPath = "#{pdfJsWorkerPath}"
script(
data-main=jsPath+'ide.js',
baseurl=jsPath,
data-ace-base=jsPath+'ace',
src=jsPath+'libs/require.js?fingerprint='+fingerprint(jsPath + 'libs/require.js')
)
- if (!anonymous)
2014-06-04 11:28:20 -04:00
script(type="text/javascript").
2014-02-12 05:23:40 -05:00
var chatReq = require.config({
context: "chat",
baseUrl: "#{chatUrl}/chat"
});
chatReq(["require", "chat"], function(require, Chat) {
new Chat({
room: {
project_id: window.userSettings.project_id
},
url: "#{chatUrl}"
})
});