an action happens when the button is clicked yo

This commit is contained in:
Rimian Perkins 2017-02-07 16:03:00 +11:00
parent 02d15d486a
commit 6d3ad0268e
2 changed files with 11 additions and 3 deletions

View File

@ -0,0 +1,8 @@
export default Ember.Controller.extend({
actions: {
someThing: function() {
console.log('w00t! something happened!');
}
}
});

View File

@ -3,11 +3,11 @@
<form class="choice-discourse-form form-horizontal"> <form class="choice-discourse-form form-horizontal">
<div> <div>
<div class='controls'> <div>
{{text-field}} {{text-field}}
</div> </div>
<div class='span10 controls'> <div>
<button class='btn btn-primary'>something</button> <button class='btn btn-primary' {{action "someThing"}}>something</button>
</div> </div>
</div> </div>