mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:54:48 +08:00
commit
1851c8d918
|
@ -26,8 +26,15 @@ export default Ember.Component.extend({
|
|||
this._editor.destroy();
|
||||
this._editor = null;
|
||||
}
|
||||
this.appEvents.off('ace:resize', this, this.resize);
|
||||
}.on('willDestroyElement'),
|
||||
|
||||
resize() {
|
||||
if (this._editor) {
|
||||
this._editor.resize();
|
||||
}
|
||||
},
|
||||
|
||||
_initEditor: function() {
|
||||
const self = this;
|
||||
|
||||
|
@ -43,9 +50,11 @@ export default Ember.Component.extend({
|
|||
self.set('content', editor.getSession().getValue());
|
||||
self._skipContentChangeEvent = false;
|
||||
});
|
||||
editor.$blockScrolling = Infinity;
|
||||
|
||||
self.$().data('editor', editor);
|
||||
self._editor = editor;
|
||||
self.appEvents.on('ace:resize', self, self.resize);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user