mirror of
https://github.com/flarum/framework.git
synced 2025-01-07 19:13:37 +08:00
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
import ActionButton from 'flarum/components/ui/action-button';
|
|
|
|
export default ActionButton.extend({
|
|
tagName: 'span',
|
|
classNames: ['badge'],
|
|
title: Ember.computed.alias('label'),
|
|
|
|
didInsertElement: function() {
|
|
this.$().tooltip();
|
|
}
|
|
});
|