From acf63c13944114d9dbab716e50714b789c094999 Mon Sep 17 00:00:00 2001 From: Ed Eustace Date: Mon, 18 Apr 2016 15:26:07 +0100 Subject: [PATCH] tweaks --- .../extended-text-entry/src/client/configure.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/corespring/extended-text-entry/src/client/configure.js b/components/corespring/extended-text-entry/src/client/configure.js index 27564e03..5750837a 100644 --- a/components/corespring/extended-text-entry/src/client/configure.js +++ b/components/corespring/extended-text-entry/src/client/configure.js @@ -30,14 +30,14 @@ var main = [ '
', '

Display

', '
', - '
Adjust the width and height of student response area below.
', + '
Adjust the width and height of student response area below. Box width must be a minimum of 35 columns and box height must be a minimum of 3 rows.
', '
', '
', ' ', '
', ' ', @@ -48,7 +48,7 @@ var main = [ ' ', '
', ' ', @@ -70,8 +70,8 @@ var main = [ scope.fullModel = model; model.model = model.model || {}; model.model.config = model.model.config || {}; - model.model.config.expectedLines = parseInt(model.model.config.expectedLines, 10) || 5; - model.model.config.expectedLength = parseInt(model.model.config.expectedLength, 10) || 40; + model.model.config.expectedLines = parseInt(model.model.config.expectedLines, 10) || 3; + model.model.config.expectedLength = parseInt(model.model.config.expectedLength, 10) || 35; }, getModel: function() {