Fix invalid syntax in autoresize.html

The options literal had a duplicate key.
This commit is contained in:
Brian McKenna 2015-05-29 09:55:02 -06:00
commit abdc4c7510

View file

@ -49,7 +49,6 @@ require(["ace/ace"], function(ace) {
var editor = ace.edit("editor3");
editor.setOptions({
maxLines: 100,
autoScrollEditorIntoView: true,
maxLines: 8
});