Skip to content

Commit fb6c359

Browse files
committed
Merge pull request #1 from dschmidt/call-default-getters-in-plugin-context
Call default getters in plugin context
2 parents f5f6fff + 5d7c274 commit fb6c359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var DeployPluginBase = CoreObject.extend({
4444
readConfig: function(property){
4545
var configuredValue = this.pluginConfig[property];
4646
if (typeof configuredValue === 'function') {
47-
return configuredValue(this.context);
47+
return configuredValue.call(this, this.context);
4848
}
4949
return configuredValue;
5050
},

0 commit comments

Comments
 (0)