Skip to content

Instantly share code, notes, and snippets.

@varblob
varblob / application.controller.js
Last active October 20, 2015 22:04 — forked from HenryVonfire/README_01.md
Expandable list
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Expandable list',
buttonName: 'expand all',
families: [{title:'parent a',
children: [
{ title:'a son' },{ title:'a daughter' }
]
},