commit
41bb016283
|
@ -44,7 +44,7 @@ var editor = monaco.editor.create(document.getElementById("container"), {
|
||||||
value: "// First line\nfunction hello() {\n\talert('Hello world!');\n}\n// Last line",
|
value: "// First line\nfunction hello() {\n\talert('Hello world!');\n}\n// Last line",
|
||||||
language: "javascript",
|
language: "javascript",
|
||||||
|
|
||||||
lineNumbers: false,
|
lineNumbers: "off",
|
||||||
roundedSelection: false,
|
roundedSelection: false,
|
||||||
scrollBeyondLastLine: false,
|
scrollBeyondLastLine: false,
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
|
@ -52,7 +52,7 @@ var editor = monaco.editor.create(document.getElementById("container"), {
|
||||||
});
|
});
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
editor.updateOptions({
|
editor.updateOptions({
|
||||||
lineNumbers: true
|
lineNumbers: "on"
|
||||||
});
|
});
|
||||||
}, 2000);
|
}, 2000);
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ var editor = monaco.editor.create(document.getElementById("container"), {
|
||||||
value: "// First line\nfunction hello() {\n\talert('Hello world!');\n}\n// Last line",
|
value: "// First line\nfunction hello() {\n\talert('Hello world!');\n}\n// Last line",
|
||||||
language: "javascript",
|
language: "javascript",
|
||||||
|
|
||||||
lineNumbers: false,
|
lineNumbers: "off",
|
||||||
roundedSelection: false,
|
roundedSelection: false,
|
||||||
scrollBeyondLastLine: false,
|
scrollBeyondLastLine: false,
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
|
@ -14,6 +14,6 @@ var editor = monaco.editor.create(document.getElementById("container"), {
|
||||||
});
|
});
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
editor.updateOptions({
|
editor.updateOptions({
|
||||||
lineNumbers: true
|
lineNumbers: "on"
|
||||||
});
|
});
|
||||||
}, 2000);
|
}, 2000);
|
||||||
|
|
Loading…
Reference in New Issue