Merge pull request #893 from marcelklehr/feature/plugin-settings

Add a new section in settings.json specifically for installed plugins.
This commit is contained in:
John McLear 2012-11-05 04:48:47 -08:00
commit dfa0ae9181
1 changed files with 2 additions and 1 deletions

View File

@ -140,7 +140,8 @@ for(var i in settings)
}
//we know this setting, so we overwrite it
if(exports[i] !== undefined)
//or it's a settings hash, specific to a plugin
if(exports[i] !== undefined || i.indexOf('ep_')==0)
{
exports[i] = settings[i];
}