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 *

pull/134/merge
Ruben Daniels 2015-08-22 21:50:44 -07:00
rodzic cdfc19414c
commit daeaf4dfd0
1 zmienionych plików z 19 dodań i 0 usunięć

Wyświetl plik

@ -380,6 +380,25 @@ define(function(require, exports, module) {
})
];
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":
node = options.node;
break;