-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheditorInserter.js
35 lines (26 loc) · 1.04 KB
/
editorInserter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Google BSD license http://code.google.com/google_bsd_license.html
// Copyright 2012 Google, Inc. [email protected]
/*global define console */
define(['OrionEditorEmbedded/OrionEditor'], function(OrionEditor) {
'use strict';
var editorContainerHTML =
" <div class='orion-editor' id='editor'>" +
" </div>" +
" <div class='contentAssist' id='contentAssist'>";
var editorInserter = {
/* Create the editor control, no content
** @param parentElement DOM element holding editor
** @param opt_height style value, default to 300px
** @return OrionEditor
*/
createEditor: function(parentElement, opt_height) {
parentElement.innerHTML = editorContainerHTML;
parentElement.querySelector('.orion-editor').style.height= opt_height || '100%';
this.orionEditor = new OrionEditor(parentElement.firstElementChild);
this.orionEditor.setInput('untitled.js', null, 'function foo() {\n return 1;\n}');
return this.orionEditor;
}
};
//-------------------------------------------
return editorInserter;
});