Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Basic Seralizing example with Ember Data" />
<link href="http://cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v1.3.0.js"></script>
<script src="http://builds.emberjs.com/tags/v1.8.1/ember.min.js"></script>
<script src="http://builds.emberjs.com/tags/v1.0.0-beta.11/ember-data.min.js"></script>
<script src="https://dl.dropboxusercontent.com/s/rq9v4v54y6tfort/ic-ajax-jsbin-restadapter.js"></script>
  <meta charset="utf-8">
  <title>Ember Links -</title>
</head>
<body>
  <script type="text/x-handlebars">
    <h1>Testing munging</h1>
    {{outlet}}
  </script>
  
  <script type="text/x-handlebars" data-template-name="index">
    <h2>Index</h2>
    <ul>
    {{#each}}
      <li>{{title}} {{thumbnailUrl}}</li>
    {{/each}}
    </ul>
  </script>
  
  <script type="text/x-handlebars" data-template-name="favorite">
    <h2>Index in Favorite</h2>
    <ul>
    {{#each favorites}}
      <li>{{#link-to 'favorite' id}}{{name}}{{/link-to}}</li>
    {{/each}}
    </ul>
    
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
chrismasterspro
0viewers