mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
25 lines
520 B
Plaintext
25 lines
520 B
Plaintext
|
import { on } from 'ember-addons/ember-computed-decorators';
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
classNames: ['site-text'],
|
||
|
|
||
|
@on('didInsertElement')
|
||
|
highlightTerm() {
|
||
|
const term = this.get('term');
|
||
|
if (term) {
|
||
|
this.$('.site-text-id, .site-text-value').highlight(term, {className: 'text-highlight'});
|
||
|
}
|
||
|
this.$('.site-text-value').ellipsis();
|
||
|
},
|
||
|
|
||
|
click() {
|
||
|
this.send('edit');
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
edit() {
|
||
|
this.sendAction('editAction', this.get('siteText'));
|
||
|
}
|
||
|
}
|
||
|
});
|