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