'use strict'; define( [ 'jquery', 'vent', 'marionette', 'Cells/NzbDroneCell', 'History/Details/HistoryDetailsView', 'bootstrap' ], function ($, vent, Marionette, NzbDroneCell, HistoryDetailsView) { return NzbDroneCell.extend({ className: 'episode-activity-details-cell', render: function () { this.$el.empty(); this.$el.html(''); var html = new HistoryDetailsView({ model: this.model }).render().$el; this.$el.popover({ content : html, html : true, trigger : 'hover', title : 'Details', placement: 'left', container: this.$el }); return this; } }); });