Files
doitinpoland.com/wp-content/plugins/wpml-translation-management/res/js/translation-editor/wpml-tm-editor-note-view.js
2023-09-12 21:41:04 +02:00

18 lines
332 B
JavaScript

/*global Backbone */
var WPML_TM = WPML_TM || {};
(function () {
"use strict";
WPML_TM.editorNoteView = Backbone.View.extend({
tagName: 'div',
className: 'wpml-form-row wpml-note',
render: function () {
var self = this;
self.$el.html(WPML_TM['templates/translation-editor/note.html'](self.model));
}
});
}());