discourse/app/assets/javascripts/discourse/components/edit-category-topic-templat...

10 lines
323 B
JavaScript

import { buildCategoryPanel } from 'discourse/components/edit-category-panel';
export default buildCategoryPanel('topic-template', {
_activeTabChanged: function() {
if (this.get('activeTab')) {
Ember.run.scheduleOnce('afterRender', () => this.$('.d-editor-input').focus());
}
}.observes('activeTab')
});