Ember.js v0.9.7
by krisselden
HTML
<script src="http://cloud.github.com/downloads/emberjs/ember.js/ember-latest.js"></script>
<script src="https://gist.github.com/raw/2623105/866ddf40ed1d206c8bc6a75731544325613d5c3c/ember-layout.js"></script>
<script src="https://gist.github.com/raw/2623105/89170ac7b4803accbf85af7c8aa901995559426f/ember-routemanager.js"></script>
<script type="text/x-handlebars">
<p>{{App.list.length}}</p>
{{#each App.list}}<p>{{this}}</p>{{/each}}
</script>
JavaScript
App = Ember.Application.create({});
App.list = Ember.ArrayProxy.create({content: [1,2,3,4,5]});
Ember.run.later(function () {
App.list.set('content', null);
}, 2000);