mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
11 lines
284 B
JavaScript
11 lines
284 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.$());
|
|
}
|
|
});
|