kopia lustrzana https://github.com/c9/core
The script to load all the test files is now configurable. For instance for newclient use: grep -lsR -E '"use server"' -E '"use mocha"' --exclude-dir node_modules *
rodzic
cdfc19414c
commit
daeaf4dfd0
|
@ -380,6 +380,25 @@ define(function(require, exports, module) {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
|
case "textarea-row":
|
||||||
|
node = new ui.vsplitbox({
|
||||||
|
options: options,
|
||||||
|
height: options.rowheight || rowheight,
|
||||||
|
edge: options.edge || edge,
|
||||||
|
type: options.type,
|
||||||
|
childNodes: [
|
||||||
|
new ui.label({ height: 40, caption: name + ":" }),
|
||||||
|
new ui.textarea({
|
||||||
|
width: options.width || widths.textarea,
|
||||||
|
height: options.height || 200,
|
||||||
|
value: options.path
|
||||||
|
? createBind(options.path)
|
||||||
|
: (options.defaultValue || ""),
|
||||||
|
realtime: typeof options.realtime !== "undefined" ? options.realtime : 1
|
||||||
|
})
|
||||||
|
]
|
||||||
|
});
|
||||||
|
break;
|
||||||
case "custom":
|
case "custom":
|
||||||
node = options.node;
|
node = options.node;
|
||||||
break;
|
break;
|
||||||
|
|
Ładowanie…
Reference in New Issue