PROD-2199

This commit is contained in:
Ali-D-Akbar
2020-12-08 19:02:00 +05:00
parent 5b44c8007e
commit c754f20dac

View File

@@ -2,8 +2,8 @@
'use strict';
define([
'gettext', 'jquery', 'underscore', 'js/edxnotes/views/note_group', 'js/edxnotes/views/tab_panel',
'js/edxnotes/views/tab_view'
], function(gettext, $, _, NoteGroupView, TabPanelView, TabView) {
'js/edxnotes/views/tab_view', 'edx-ui-toolkit/js/utils/html-utils'
], function(gettext, $, _, NoteGroupView, TabPanelView, TabView, HtmlUtils) {
var view = 'Tags';
var TagsView = TabView.extend({
scrollToTag: function(tagName) {
@@ -104,7 +104,7 @@
container.appendChild(group.render().el);
}, this);
this.$el.append(container);
this.$el.append(HtmlUtils.HTML(container).toString());
return this;
},