Added ability to scroll down using arrow key in ace editor (still issues with scrolling up)

This commit is contained in:
Victoria Wang 2014-10-28 18:11:51 -07:00
parent 91817cb98b
commit d4b33c669a

View file

@ -81,7 +81,7 @@
<div class="row editor"> <div class="row editor">
<div class="col col-100"> <div class="col col-100">
<div id="editor" style="width: 100%; position: relative;"><%==encoding_fix(@file_data) %> <div id="editor"><%==encoding_fix(@file_data) %>
</div> </div>
</div> </div>
</div> </div>
@ -152,7 +152,8 @@
editor.setFontSize(14) editor.setFontSize(14)
editor.setShowPrintMargin(false) editor.setShowPrintMargin(false)
editor.setOptions({ editor.setOptions({
maxLines: Infinity maxLines: Infinity,
autoScrollEditorIntoView: true
}) })
editor.on('change', function(obj) { editor.on('change', function(obj) {