const _ = require('underscore'); const DropdownAdminView = require('dashboard/components/dropdown/dropdown-admin-view'); const PublicDropdown = DropdownAdminView.extend({ _TEMPLATE: `
`, render: function () { this.$el .html(_.template(this._TEMPLATE)(this.model.attributes)) .css({ width: this.options.width }); return this; } }); module.exports = PublicDropdown;