Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Ember</title>
  <script src="http://code.jquery.com/jquery.min.js"></script>
  <script src="https://github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.js"></script>
  <script src="https://raw.github.com/emberjs/ember.js/release-builds/ember-1.0.0-pre.4.js"></script>
</head>
<body>
  
<script type="text/x-handlebars">
  This is the application template<br/>
  {{view App.HelloView}}
</script>
  
<script type="text/x-handlebars" data-template-name="hello">
  Hello World
</script>
  
</body>
</html>
 
App = Em.Application.create({});
App.HelloView = Em.View.extend({
  templateName: "hello"
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ryanjmpro
0viewers