[root@dywang moodle23]# diff -qrwbBE mod_tmp/codemirror-3.19 lib/form/codemirror-3.19/ Files mod_tmp/codemirror-3.19/lib/codemirror.css and lib/form/codemirror-3.19/lib/codemirror.css differ Files mod_tmp/codemirror-3.19/mode/python/index.html and lib/form/codemirror-3.19/mode/python/index.html differ
[root@dywang moodle23]# diff -urN -wbBE mod_tmp/codemirror-3.19/lib/codemirror.css \ lib/form/codemirror-3.19/lib/codemirror.css --- mod_tmp/codemirror-3.19/lib/codemirror.css 2013-10-21 16:19:59.000000000 +0800 +++ lib/form/codemirror-3.19/lib/codemirror.css 2013-11-22 08:20:28.000000000 +0800 @@ -252,6 +252,16 @@ background: rgba(255, 255, 0, .4); } +.CodeMirror { + border: 1px solid #eee; + height: auto; +} +.CodeMirror-scroll { + overflow-y: hidden!important; + overflow-x: auto; + min-height: 4em; + max-height: 30em; +} /* IE7 hack to prevent it from returning funny offsetTops on the spans */ .CodeMirror span { *vertical-align: text-bottom; }
enterMode: "flat"
,讓 codearea 按下 enter 產生新的一行時,不會自動加入「空白內縮」。
[root@dywang moodle23]# diff -urN -wbBE mod_tmp/codemirror-3.19/mode/python/index.html \ lib/form/codemirror-3.19/mode/python/index.html --- mod_tmp/codemirror-3.19/mode/python/index.html 2013-10-21 16:19:59.000000000 +0800 +++ lib/form/codemirror-3.19/mode/python/index.html 2014-03-02 10:41:27.283706055 +0800 @@ -151,6 +151,7 @@ lineNumbers: true, indentUnit: 4, tabMode: "shift", + enterMode: "flat", matchBrackets: true }); @@ -161,6 +162,7 @@ lineNumbers: true, indentUnit: 4, tabMode: "shift", + enterMode: "flat", matchBrackets: true }); </script>