Backbone.ModelBinder
Backbone.ModelBinder copied to clipboard
ElManagerFactory.isElContained incorrect return statement
trafficstars
Instead of
isElContained: function(findEl){
return this._el === findEl || $(this._el).has(findEl).length > 0;
}
should be
isElContained: function(findEl){
return this._el[0] === findEl || $(this._el).has(findEl).length > 0;
}