We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1411ce commit 0c0f341Copy full SHA for 0c0f341
shared_assets/css/project.css
@@ -673,3 +673,9 @@ img.feature {
673
.step .codeview .data .ace_cursor {
674
display: none;
675
}
676
+
677
+/* turn off right hand scrollbars on editor */
678
+.ace_scrollbar {
679
+ display: none;
680
+ visibility: hidden;
681
+}
shared_assets/js/project.js
@@ -19,7 +19,7 @@ $(document).ready(function() {
19
editor.setBehavioursEnabled( false );
20
editor.setHighlightActiveLine( false );
21
editor.setReadOnly( true );
22
- editor.getSession().setUseWrapMode(true);
+ editor.getSession().setUseWrapMode(false);
23
editor.renderer.setShowGutter( false ); //disable line numbers
24
25
//automatically adjust height to fit content
0 commit comments