Index: app/app.js |
=== modified file 'app/app.js' |
--- app/app.js 2013-06-26 19:10:58 +0000 |
+++ app/app.js 2013-06-28 20:10:27 +0000 |
@@ -598,10 +598,10 @@ |
} |
this.addSubApplications(cfg); |
- // When someone wants a charm to be deployed they fire initiateDeploy |
- // and we show the charm panel to configure/deploy the service. |
- Y.on('initiateDeploy', function(charm) { |
- this.deploy(charm); |
+ // When someone wants a charm to be deployed they fire an event and we |
+ // show the charm panel to configure/deploy the service. |
+ Y.on('initiateDeploy', function(charm, ghostXY) { |
+ this.deploy(charm, ghostXY); |
}, this.charmPanel); |
}, |