From 5aa68f34063cca7fbdb9f40df5b765a75128f9b3 Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Sat, 22 Aug 2015 22:42:13 -0700 Subject: [PATCH] With comment support for the black list --- plugins/c9.ide.ui/forms.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/c9.ide.ui/forms.js b/plugins/c9.ide.ui/forms.js index 20f0a1f6..105fd74d 100644 --- a/plugins/c9.ide.ui/forms.js +++ b/plugins/c9.ide.ui/forms.js @@ -381,6 +381,7 @@ define(function(require, exports, module) { ]; break; case "textarea-row": + // TODO this should be ace node = new ui.vsplitbox({ options: options, height: options.rowheight || rowheight, @@ -391,6 +392,9 @@ define(function(require, exports, module) { new ui.textarea({ width: options.width || widths.textarea, height: options.height || 200, + style: options.fixedFont + ? "font-family: Monaco, Menlo, 'Ubuntu Mono', Consolas, source-code-pro, monospace; font-size: 10px" + : "", value: options.path ? createBind(options.path) : (options.defaultValue || ""),