This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/assets/javascripts/discourse/widgets/raw-html.js.es6
T

19 lines
276 B
JavaScript

export default class RawHtml {
constructor(attrs) {
this.html = attrs.html;
}
init() {
return $(this.html)[0];
}
update(prev) {
if (prev.html === this.html) { return; }
return this.init();
}
destroy() { }
}
RawHtml.prototype.type = 'Widget';