1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 17:51:24 +02:00
Files
php-flarum/ember/app/components/ui/badge-button.js
2015-03-05 12:07:16 +10:30

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();
}
});