mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 15:05:39 +01:00
Small improvements
This commit is contained in:
parent
3adb8be659
commit
1aa0efb727
3 changed files with 5 additions and 1 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
CORE: {
|
CORE: {
|
||||||
paths: {
|
paths: {
|
||||||
npm: 'node_modules/monaco-editor-core/min/vs',
|
npm: 'node_modules/monaco-editor-core/min/vs',
|
||||||
|
// npm: 'node_modules/monaco-editor-core/dev/vs',
|
||||||
dev: '/vscode/out/vs',
|
dev: '/vscode/out/vs',
|
||||||
built: '/vscode/out-monaco-editor-core/min/vs',
|
built: '/vscode/out-monaco-editor-core/min/vs',
|
||||||
releaseDev: 'release/dev/vs',
|
releaseDev: 'release/dev/vs',
|
||||||
|
|
|
||||||
|
|
@ -132,6 +132,7 @@
|
||||||
div.style.right = 0;
|
div.style.right = 0;
|
||||||
div.style.background = 'lightgray';
|
div.style.background = 'lightgray';
|
||||||
div.style.padding = '5px 20px 5px 5px';
|
div.style.padding = '5px 20px 5px 5px';
|
||||||
|
div.style.zIndex = '1000';
|
||||||
|
|
||||||
div.innerHTML = '<ul><li>' + allComponents.map(function(component) { return component.renderLoadingOptions(); }).join('</li><li>') + '</li></ul>';
|
div.innerHTML = '<ul><li>' + allComponents.map(function(component) { return component.renderLoadingOptions(); }).join('</li><li>') + '</li></ul>';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
/// <reference path="../node_modules/monaco-editor-core/monaco.d.ts" />
|
/// <reference path="../node_modules/monaco-editor-core/monaco.d.ts" />
|
||||||
define(['./samples'], function(SAMPLES) {
|
define(['require', './samples'], function(require, SAMPLES) {
|
||||||
|
|
||||||
|
var domutils = require('vs/base/browser/dom');
|
||||||
|
|
||||||
var WRAPPING_COLUMN = 300;
|
var WRAPPING_COLUMN = 300;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue