Skip to content

Commit

Permalink
Return Model when using Model.Store
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Dec 28, 2011
1 parent 405261d commit 12653c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model.js
Expand Up @@ -34,7 +34,7 @@ var Model = function(store, schema) {
}; };
Model.Model = Model; Model.Model = Model;
Model.Store = function(store){ Model.Store = function(store){
Model(store, {});//(store.getSchema ? store.getSchema() : {}); return Model(store, {});//(store.getSchema ? store.getSchema() : {});
} }


var modelPaths = {}; var modelPaths = {};
Expand Down

0 comments on commit 12653c8

Please sign in to comment.