Ember MVP

The latest build of Ember.

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.3/handlebars.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.2/ember.min.js"></script>
  <script type="text/x-handlebars">
      <button {{action hide target=view}}>Hide</button>
  </script>

CSS

/* Put your CSS here */
html, body { margin: 20px; }
.active { font-weight: bold; }

JavaScript

App = Ember.Application.create({});
App.ApplicationView = Ember.View.extend({
    hide: function() {
        this.set('isVisible', false);
    }  
});