DEV: removes jquery usage from highlight-syntax (#10564)

This commit is contained in:
Joffrey JAFFEUX
2020-09-01 09:50:49 +02:00
committed by GitHub
parent bb2e830010
commit f8062300da
4 changed files with 36 additions and 18 deletions
@@ -6,6 +6,6 @@ export default Component.extend({
@on("didInsertElement")
@observes("code")
_refresh() {
highlightSyntax($(this.element), this.siteSettings, this.session);
highlightSyntax(this.element, this.siteSettings, this.session);
}
});