1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Settings/Indexers/ItemView.js

13 lines
284 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
2013-04-30 17:01:54 -07:00
define(['marionette', 'Mixins/AsModelBoundView'], function (Marionette, AsModelBoundView) {
2013-04-30 17:01:54 -07:00
var view = Marionette.ItemView.extend({
2013-06-18 18:02:23 -07:00
template: 'Settings/Indexers/ItemTemplate',
tagName : 'li'
2013-04-30 17:01:54 -07:00
});
2013-06-18 18:02:23 -07:00
return AsModelBoundView.call(view);
2013-04-30 17:01:54 -07:00
});