Ember Latest

The latest build of Ember.

HTML

<script src="http://builds.emberjs.com/handlebars-1.0.0.js"></script>
<script src="http://builds.emberjs.com/ember-latest.js"></script>
<script type="text/x-handlebars" data-template-name="application">
    Top-level navigation: {{#link-to "test"}}Test{{/link-to}}
    
    {{outlet}}
</script>

JavaScript

App = Ember.Application.create({
	LOG_TRANSITIONS : true,
	LOG_TRANSITIONS_INTERNAL : true
});

App.Router.map(function() {
    this.route("test");
});

App.TestRoute = Ember.Route.extend({
    activate: function(){
        alert("activated");
    }
});