parent
68eada4c4d
commit
30595e85a3
@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
var oldItemViewRender = Marionette.ItemView.prototype.render;
|
||||
var oldItemCollectionViewRender = Marionette.CollectionView.prototype.render;
|
||||
|
||||
Marionette.ItemView.prototype.render = function () {
|
||||
|
||||
if (this.model) {
|
||||
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||||
}
|
||||
|
||||
console.log("render");
|
||||
|
||||
return oldItemViewRender.apply(this, arguments);
|
||||
};
|
||||
|
||||
Marionette.CollectionView.prototype.render = function () {
|
||||
|
||||
if (this.model) {
|
||||
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||||
}
|
||||
|
||||
console.log("render");
|
||||
|
||||
return oldItemCollectionViewRender.apply(this, arguments);
|
||||
};
|
Loading…
Reference in new issue