Skip to content

Instantly share code, notes, and snippets.

@eibrahim
Created June 5, 2016 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eibrahim/28b28b34f39eaf661a2ef79b5b32c2cc to your computer and use it in GitHub Desktop.
Save eibrahim/28b28b34f39eaf661a2ef79b5b32c2cc to your computer and use it in GitHub Desktop.
Tip 10 - Say Hello
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions: {
sayHello(){
alert ('Hello World');
}
}
});
<h1>Welcome to <a href='http://www.emberdaily.tips' target='_blank'>EmberDaily.Tips</a></h1>
<br>
<button {{action 'sayHello'}}>Say Hello</button>
<br>
{{outlet}}
<br>
<br>
{
"version": "0.8.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.5.1",
"ember-data": "2.5.2",
"ember-template-compiler": "2.5.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment