Skip to content

Instantly share code, notes, and snippets.

@SantoshSrinivas79
Created April 22, 2012 11:24
Show Gist options
  • Save SantoshSrinivas79/2463729 to your computer and use it in GitHub Desktop.
Save SantoshSrinivas79/2463729 to your computer and use it in GitHub Desktop.
Learning-Emberjs-Post-1
var App = Em.Application.create();
App.MyView = Em.View.extend({
mouseDown: function() {
window.alert("hello world!");
}
});
<script type="text/javascript" src="http://dl.dropbox.com/u/10439810/ember/my_trials/js/libs/ember-0.9.7.1.min.js"></script>
<script type="text/javascript" src="http://dl.dropbox.com/u/10439810/ember/my_trials/js/app.js"></script>
<script type="text/x-handlebars">
{{#view App.MyView}}
<h1>Hello world!</h1>
{{/view}}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment