cartodb-4.42/lib/assets/javascripts/builder/components/tab-pane/tab-pane-template-view.js
2024-04-06 05:25:13 +00:00

20 lines
438 B
JavaScript
Executable File

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;
}
});