mirror of https://github.com/lidarr/Lidarr
Fixed error on load for poster item view
This commit is contained in:
parent
394b93628c
commit
b5cfa72c31
|
@ -1,6 +1,4 @@
|
||||||
var vent = require('vent');
|
var SeriesIndexItemView = require('../SeriesIndexItemView');
|
||||||
var Marionette = require('marionette');
|
|
||||||
var SeriesIndexItemView = require('../SeriesIndexItemView');
|
|
||||||
|
|
||||||
module.exports = SeriesIndexItemView.extend({
|
module.exports = SeriesIndexItemView.extend({
|
||||||
tagName : 'li',
|
tagName : 'li',
|
||||||
|
|
|
@ -5,8 +5,8 @@ var CommandController = require('../../Commands/CommandController');
|
||||||
module.exports = Marionette.ItemView.extend({
|
module.exports = Marionette.ItemView.extend({
|
||||||
ui : {refresh : '.x-refresh'},
|
ui : {refresh : '.x-refresh'},
|
||||||
events : {
|
events : {
|
||||||
"click .x-edit" : '_editSeries',
|
'click .x-edit' : '_editSeries',
|
||||||
"click .x-refresh" : '_refreshSeries'
|
'click .x-refresh' : '_refreshSeries'
|
||||||
},
|
},
|
||||||
onRender : function(){
|
onRender : function(){
|
||||||
CommandController.bindToCommand({
|
CommandController.bindToCommand({
|
||||||
|
|
Loading…
Reference in New Issue