1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Indexers/ItemView.js

13 lines
284 B
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'use strict';
2013-05-01 03:01:54 +03:00
define(['marionette', 'Mixins/AsModelBoundView'], function (Marionette, AsModelBoundView) {
2013-05-01 03:01:54 +03:00
var view = Marionette.ItemView.extend({
2013-06-19 04:02:23 +03:00
template: 'Settings/Indexers/ItemTemplate',
tagName : 'li'
2013-05-01 03:01:54 +03:00
});
2013-06-19 04:02:23 +03:00
return AsModelBoundView.call(view);
2013-05-01 03:01:54 +03:00
});