Index: app/views/inspector.js |
=== modified file 'app/views/inspector.js' |
--- app/views/inspector.js 2013-07-24 21:46:12 +0000 |
+++ app/views/inspector.js 2013-07-25 19:15:42 +0000 |
@@ -1237,13 +1237,18 @@ |
this.container = Y.Node.create(this.templateWrapper); |
var options = model.getAttrs(); |
+ |
// XXX - Jeff |
// not sure this should be done like this |
// but this will allow us to use the old template. |
- |
options.settings = utils.extractServiceSettings(options.options); |
this.container.setHTML(this.template(options)); |
+ this.container.all('textarea.config-field') |
+ .plug(plugins.ResizingTextarea, |
+ { max_height: 200, |
+ min_height: 18, |
+ single_line: 18}); |
} |
} |
}; |