mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
import Component from "@ember/component";
|
|
import { on, observes } from "discourse-common/utils/decorators";
|
|
import highlightSyntax from "discourse/lib/highlight-syntax";
|
|
|
|
export default Component.extend({
|
|
@on("didInsertElement")
|
|
@observes("code")
|
|
_refresh: function() {
|
|
highlightSyntax($(this.element));
|
|
}
|
|
});
|