quckfix for the backbone part. To fully support the marionette changes.

This commit is contained in:
Sascha Thiel
2015-07-13 11:07:07 +02:00
parent 5c5275f573
commit 2d2a7cc0d4
+2 -1
View File
@@ -311,7 +311,8 @@ declare module Backbone {
interface ViewOptions<TModel extends Model> {
model?: TModel;
collection?: Backbone.Collection<TModel>;
// TODO: quickfix, this can't be fixed easy. The collection does not need to have the same model as the parent view.
collection?: Backbone.Collection<any>;
el?: any;
id?: string;
className?: string;