cartodb-4.42/lib/assets/javascripts/builder/components/tab-pane/tab-pane-template-view.js

20 lines
438 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
var cdb = require('internal-carto.js');
/**
* Icon component
*/
module.exports = cdb.core.View.extend({
initialize: function (options) {
if (!this.model) throw new Error('A model should be provided');
if (!options.template) throw new Error('A template should be provided');
this.template = options.template;
},
render: function () {
this.$el.html(this.template(this.model.toJSON()));
return this;
}
});