fixed auto modelbinder.

This commit is contained in:
kay.one 2013-04-11 22:00:48 -07:00
parent a6b66b7c90
commit 0e6faedffc
1 changed files with 5 additions and 3 deletions

View File

@ -19,13 +19,15 @@ Marionette.View.prototype.viewName = function () {
Marionette.ItemView.prototype.render = function () {
var result = oldItemViewRender.apply(this, arguments);
this.$el.addClass('iv-' + this.viewName());
if (this.model) {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
this.$el.addClass('iv-' + this.viewName());
return oldItemViewRender.apply(this, arguments);
return result;
};
Marionette.CollectionView.prototype.render = function () {