diff --git a/cms/static/js/views/abstract_editor.js b/cms/static/js/views/abstract_editor.js index 81ff65a5e1..c67fc164ad 100644 --- a/cms/static/js/views/abstract_editor.js +++ b/cms/static/js/views/abstract_editor.js @@ -9,6 +9,7 @@ define(['js/views/baseview', 'underscore'], function(BaseView, _) { // Backbone model cid is only unique within the collection. this.uniqueId = _.uniqueId(templateName + '_'); this.template = this.loadTemplate(templateName); + // xss-lint: disable=javascript-jquery-html this.$el.html(this.template({model: this.model, uniqueId: this.uniqueId})); this.listenTo(this.model, 'change', this.render); this.render();