mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
import { on, observes } from 'ember-addons/ember-computed-decorators';
|
|
import highlightSyntax from 'discourse/lib/highlight-syntax';
|
|
|
|
export default Ember.Component.extend({
|
|
|
|
@on('didInsertElement')
|
|
@observes('code')
|
|
_refresh: function() {
|
|
highlightSyntax(this.$());
|
|
}
|
|
|
|
});
|