Skip to content

Commit

Permalink
mdarea: disable inlines
Browse files Browse the repository at this point in the history
This was accidentially introduced when updating for v1.0.0 of the mdarea library, and causes user inconvenience.

Fixes flarum/framework#2569
  • Loading branch information
askvortsov1 committed Jan 26, 2021
1 parent d27e108 commit 6d8ea34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/src/forum/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ app.initializers.add('flarum-markdown', function(app) {
this.editor = new MarkdownArea(this.$('textarea')[0], {
keyMap: {
indent: ['Ctrl+m'],
outdent: ['Ctrl+M']
outdent: ['Ctrl+M'],
inline: []
}
});
});
Expand Down

0 comments on commit 6d8ea34

Please sign in to comment.