Merge pull request #351 from globocom/fix/registry-memory

Fix ReferenceError: loopback is not defined in registry.memory().
This commit is contained in:
Miroslav Bajtoš 2014-06-26 15:43:16 +02:00
commit a976481adb
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ registry.memory = function (name) {
if(!memory) {
memory = this._memoryDataSources[name] = this.createDataSource({
connector: loopback.Memory
connector: 'memory'
});
}