12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
import { buildCategoryPanel } from 'discourse/components/edit-category-panel';
|
|
|
|
export default buildCategoryPanel('topic-template', {
|
|
_activeTabChanged: function() {
|
|
if (this.get('activeTab')) {
|
|
Ember.run.schedule('afterRender', function() {
|
|
$('#wmd-input').focus();
|
|
});
|
|
}
|
|
}.observes('activeTab')
|
|
});
|