mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
updated _ templating pattern to be {{ }} instead of <%%>
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
<i class="add-on icon-search"></i>
|
||||
<input type="text" class="span10" placeholder="Start typing the name of series you want to add ...">
|
||||
</div>
|
||||
<div id="search-result">
|
||||
<div id="search-result" class="span10">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,8 +5,7 @@
|
||||
NzbDrone.AddSeries.SearchItemView = Backbone.Marionette.ItemView.extend({
|
||||
|
||||
template: "AddSeries/AddNewSeries/SearchResultTemplate",
|
||||
className: 'row',
|
||||
|
||||
className: 'well',
|
||||
onRender: function () {
|
||||
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||||
}
|
||||
@@ -15,7 +14,6 @@ NzbDrone.AddSeries.SearchItemView = Backbone.Marionette.ItemView.extend({
|
||||
|
||||
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
|
||||
|
||||
className: 'result',
|
||||
itemView: NzbDrone.AddSeries.SearchItemView,
|
||||
|
||||
initialize: function () {
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
<div>
|
||||
<div name="SeriesName"/>
|
||||
<div name="FirstAired"/>
|
||||
</div>
|
||||
{{seriesName}} {{seriesYear}}
|
||||
Reference in New Issue
Block a user