FELIX-5122 - Script console output cannot be copied

Dropping nocursor and use true instead to get copy working

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1717220 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole-plugins/script-console/src/main/resources/res/ui/script-console.js b/webconsole-plugins/script-console/src/main/resources/res/ui/script-console.js
index 711d194..d5c916b 100644
--- a/webconsole-plugins/script-console/src/main/resources/res/ui/script-console.js
+++ b/webconsole-plugins/script-console/src/main/resources/res/ui/script-console.js
@@ -40,7 +40,7 @@
     });
     outputEditor = CodeMirror.fromTextArea(document.getElementById("result"), {
             lineNumbers:true,
-            readOnly:"nocursor"
+            readOnly:true
         });
 }