123456789101112131415161718192021222324252627282930313233 |
- var jsCode = [
- '"use strict";',
- 'function Person(age) {',
- ' if (age) {',
- ' this.age = age;',
- ' }',
- '}',
- 'Person.prototype.getAge = function () {',
- ' return this.age;',
- '};'
- ].join('\n');
- var editor = monaco.editor.create(document.getElementById('container'), {
- value: jsCode,
- language: 'javascript',
- glyphMargin: true
- });
- var decorations = editor.deltaDecorations(
- [],
- [
- {
- range: new monaco.Range(3, 1, 3, 1),
- options: {
- isWholeLine: true,
- className: 'myContentClass',
- glyphMarginClassName: 'myGlyphMarginClass'
- }
- }
- ]
- );
- // You can now use `decorations` to change or remove the decoration
|