From c1f174f554dbb524bf2c3337a8c3277ffbc834be Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Fri, 29 Sep 2017 10:19:35 -0400 Subject: [PATCH] FIX: Okay, try going back to the old way. Too many exceptions. --- app/assets/javascripts/discourse/widgets/raw-html.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/widgets/raw-html.js.es6 b/app/assets/javascripts/discourse/widgets/raw-html.js.es6 index 740af14d2a7..c532946207b 100644 --- a/app/assets/javascripts/discourse/widgets/raw-html.js.es6 +++ b/app/assets/javascripts/discourse/widgets/raw-html.js.es6 @@ -4,7 +4,7 @@ export default class RawHtml { } init() { - const $html = $.parseHTML(this.html); + const $html = $(this.html); this.decorate($html); return $html[0]; }