UNPKG
dpaw-qweb-app
Version:
latest (0.1.1)
0.1.1
Simple viewer app to interface with QGIS/monorail
bitbucket.org/dpaw/brocket-qweb-app
dpaw-qweb-app
/
src
/
editor.js
18 lines
(12 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** *
@fileOverview
*
@name
editor.js *
@author
Gavin Coombes *
@license
BSD-3-Clause * * Display messages using the ace editor. * */
let
ace
=
require(
'ace-editor-builds'
);
let
Editor
=
ace.editor(
'editor'
);
module
.
exports
= Editor;