Skip to content

Instantly share code, notes, and snippets.

@phkavitha
Created October 6, 2015 12:18
Show Gist options
  • Save phkavitha/b8d2b88cf5b18b613fd2 to your computer and use it in GitHub Desktop.
Save phkavitha/b8d2b88cf5b18b613fd2 to your computer and use it in GitHub Desktop.
StackOverFlow_32968703
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
actions: {
switchTab () {
console.log("inside the switch tab");
},
refresh () {
console.log("inside the refresh action");
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<li class="tab" {{action 'switchTab'}}>
<a {{action 'refresh' bubbles=false}}>Refresh&nbsp;</a>
Bubble Bobble Tab
</li>
<br>
{
"version": "0.4.11",
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.13.11/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment