You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
570 B
23 lines
570 B
'use strict';
|
|
|
|
define(
|
|
[
|
|
'app',
|
|
'marionette',
|
|
'Episode/Layout'
|
|
], function (App, Marionette, EpisodeLayout) {
|
|
return Marionette.ItemView.extend({
|
|
template: 'Calendar/UpcomingItemTemplate',
|
|
tagName : 'div',
|
|
|
|
events : {
|
|
'click .x-episode-title' : '_showEpisodeDetails'
|
|
},
|
|
|
|
_showEpisodeDetails : function() {
|
|
var view = new EpisodeLayout({ model: this.model });
|
|
App.modalRegion.show(view);
|
|
}
|
|
});
|
|
});
|