szurubooru/client/js/controls/post_edit_sidebar_control.js

24 lines
563 B
JavaScript
Raw Normal View History

'use strict';
const views = require('../util/views.js');
class PostEditSidebarControl {
constructor(hostNode, post, postContentControl) {
this._hostNode = hostNode;
this._post = post;
this._postContentControl = postContentControl;
this._template = views.getTemplate('post-edit-sidebar');
this.install();
}
install() {
const sourceNode = this._template({
post: this._post,
});
views.showView(this._hostNode, sourceNode);
}
};
module.exports = PostEditSidebarControl;