mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Load basic CM instance with dummy content
This commit is contained in:
parent
d8e87997c1
commit
f5b6d3ff3e
3 changed files with 12 additions and 2 deletions
|
@ -158,6 +158,12 @@ block requirejs
|
|||
window.pdfCMapsPath = "#{pdfCMapsPath}"
|
||||
window.uiConfig = JSON.parse('!{JSON.stringify(uiConfig).replace(/\//g, "\\/")}');
|
||||
|
||||
// TODO: inject based on environment
|
||||
script(
|
||||
src="http://localhost:3809/public/js/es/richText.js"
|
||||
type="text/javascript"
|
||||
)
|
||||
|
||||
script(
|
||||
data-main=buildJsPath("ide.js", {hashedPath:false}),
|
||||
baseurl=fullJsPath,
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
console.log('hello from rich text')
|
||||
import CodeMirror from 'codemirror'
|
||||
|
||||
export function init(rootEl) {
|
||||
return CodeMirror(rootEl)
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ module.exports = {
|
|||
// Defines the "entry point(s)" for the application - i.e. the file which
|
||||
// bootstraps the application
|
||||
entry: {
|
||||
'rich-text': './public/es/rich-text.js'
|
||||
richText: './public/es/rich-text.js'
|
||||
},
|
||||
|
||||
// Define where and how the bundle will be output to disk
|
||||
|
|
Loading…
Reference in a new issue