Skip to content

Commit

Permalink
Removed name parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Dec 21, 2011
1 parent 5e811a3 commit f0a941a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model.js
Expand Up @@ -33,8 +33,8 @@ var Model = function(store, schema) {
return schema;
};
Model.Model = Model;
Model.Store = function(name, store){
Model(name, store, {});//(store.getSchema ? store.getSchema() : {});
Model.Store = function(store){
Model(store, {});//(store.getSchema ? store.getSchema() : {});
}


Expand Down

0 comments on commit f0a941a

Please sign in to comment.