From daeaf4dfd047e3637c7b67a8e5c738a04ea94976 Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Sat, 22 Aug 2015 21:50:44 -0700 Subject: [PATCH] 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 * --- plugins/c9.ide.ui/forms.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/plugins/c9.ide.ui/forms.js b/plugins/c9.ide.ui/forms.js index 0ea876c0..20f0a1f6 100644 --- a/plugins/c9.ide.ui/forms.js +++ b/plugins/c9.ide.ui/forms.js @@ -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;