13 lines
248 B
JavaScript
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();
|
|
}
|
|
}
|
|
});
|