FIX: resize events for ace were not triggered correctly

This commit is contained in:
Sam
2017-05-15 16:10:07 -04:00
parent 7a4e825671
commit c40ac5abe6
2 changed files with 12 additions and 1 deletions

View File

@ -150,6 +150,9 @@ export default Ember.Controller.extend({
toggleMaximize: function() {
this.toggleProperty('maximized');
Em.run.next(()=>{
this.appEvents.trigger('ace:resize');
});
}
}