Skip to content

Instantly share code, notes, and snippets.

@nikz
Created June 8, 2016 12:09
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 nikz/c9cfe99ace202538b0c31c88c416e550 to your computer and use it in GitHub Desktop.
Save nikz/c9cfe99ace202538b0c31c88c416e550 to your computer and use it in GitHub Desktop.
wat
import Ember from 'ember';
const { computed } = Ember;
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
testing: computed(function() {
console.log("hi")
return new Date().getTime();
}).volatile()
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
{{testing}}<br />
{{testing}}<br />
{{testing}}<br />
{{testing}}<br />
<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