travis-web/app/controllers/plans.js
2016-01-14 11:38:46 +01:00

13 lines
248 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
gaCta(location) {
if(config.gaCode) {
_gaq.push(['_trackPageview', '/virtual/signup?' + location]);
}
this.auth.signIn();
}
}
});