1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/UI/Settings/Indexers/ItemView.js

30 lines
756 B
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'use strict';
2013-05-01 03:01:54 +03:00
2013-08-22 03:36:35 +03:00
define(
[
'app',
'marionette',
'Settings/Notifications/DeleteView',
'Mixins/AsModelBoundView',
'Mixins/AsValidatedView'
], function (App, Marionette, DeleteView, AsModelBoundView, AsValidatedView) {
2013-05-01 03:01:54 +03:00
2013-08-22 03:36:35 +03:00
var view = Marionette.ItemView.extend({
template: 'Settings/Indexers/ItemTemplate',
tagName : 'li',
2013-06-27 10:37:39 +03:00
2013-08-22 03:36:35 +03:00
events: {
'click .x-delete': '_deleteIndexer'
},
2013-06-27 10:37:39 +03:00
2013-08-22 03:36:35 +03:00
_deleteIndexer: function () {
var view = new DeleteView({ model: this.model});
App.modalRegion.show(view);
}
});
2013-06-19 04:02:23 +03:00
2013-08-22 03:36:35 +03:00
AsModelBoundView.call(view);
return AsValidatedView.call(view);
2013-08-22 03:36:35 +03:00
});