Skip to content

Commit 0c0f341

Browse files
committed
adjustments to editor scrollbar and wraping
1 parent d1411ce commit 0c0f341

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

shared_assets/css/project.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,3 +673,9 @@ img.feature {
673673
.step .codeview .data .ace_cursor {
674674
display: none;
675675
}
676+
677+
/* turn off right hand scrollbars on editor */
678+
.ace_scrollbar {
679+
display: none;
680+
visibility: hidden;
681+
}

shared_assets/js/project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $(document).ready(function() {
1919
editor.setBehavioursEnabled( false );
2020
editor.setHighlightActiveLine( false );
2121
editor.setReadOnly( true );
22-
editor.getSession().setUseWrapMode(true);
22+
editor.getSession().setUseWrapMode(false);
2323
editor.renderer.setShowGutter( false ); //disable line numbers
2424

2525
//automatically adjust height to fit content

0 commit comments

Comments
 (0)