fix: prevent errant body string on title edit
This commit is contained in:
@@ -7,7 +7,10 @@
|
||||
tagName: 'form',
|
||||
events: {
|
||||
submit: 'updateHandler',
|
||||
'click .post-cancel': 'cancelHandler'
|
||||
'click .post-cancel': 'cancelHandler',
|
||||
'keypress input:not(.wmd-input)': function(event) {
|
||||
return DiscussionUtil.ignoreEnterKey(event);
|
||||
}
|
||||
},
|
||||
|
||||
attributes: {
|
||||
|
||||
Reference in New Issue
Block a user