We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f6fff commit 5d7c274Copy full SHA for 5d7c274
index.js
@@ -44,7 +44,7 @@ var DeployPluginBase = CoreObject.extend({
44
readConfig: function(property){
45
var configuredValue = this.pluginConfig[property];
46
if (typeof configuredValue === 'function') {
47
- return configuredValue(this.context);
+ return configuredValue.call(this, this.context);
48
}
49
return configuredValue;
50
},
0 commit comments