discourse/app/assets/javascripts/admin/components/highlighted-code.js
2020-09-04 13:42:47 +02:00

12 lines
343 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() {
highlightSyntax(this.element, this.siteSettings, this.session);
},
});