Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Cookbook: Continuous Redrawing of Views</title>
</head>
<body>
  <script type="text/x-handlebars" id="interval">
    {{#if fullSecond}}
      {{nyan-start}}
    {{/if}}
    {{#if quarterSecond}}
      {{nyan-middle}}
    {{/if}}
    {{#if halfSecond}}
      {{nyan-end}}
    {{/if}}
    {{#if threeQuarterSecond}}
      {{nyan-middle}}
    {{/if}}
    <h3>You&apos;ve nyaned for {{digital-clock clock.pulse}} (h:m:s)</h3>
    {{render "comments"}}
  </script>
  <script type="text/x-handlebars" id="components/nyan-start">
<pre>     +      o     +              o
         +             o     +       +
   o           +
-------_,------,       +        o
-------_|   /\\_/\\
-------^|__( - .-)      o  +      +
-------  ""  ""
     +      o         o   +       o
         +         +
 o             o         o      o     +
</pre>
  </script>
  <script type="text/x-handlebars" id="components/nyan-middle">
<pre>     +      o     +              o
         +             o     +       +
   o           +
________-------_,------,        o
________-------_|   /\\_/\\
________-------^|__( - .-) +      +
________-------  ""  ""
     +      o         o   +       o
         +         +
 o             o         o      o     +
</pre>
  </script>
  <script type="text/x-handlebars" id="components/nyan-end">
<pre>     +      o     +              o
         +             o     +       +
   o           +
-------________-------_,------, o
-------________-------_|   /\\_/\\
-------________-------^|__( - .-) +
-------________-------  ""  ""
     +      o         o   +       o
         +         +
 o             o         o      o     +
</pre>
  </script>
  <script type="text/x-handlebars" id="comments">
    <form {{action "add" on="submit"}}>
      {{input value=comment}}
      <button>Add Comment</button>
    </form>
    <ul>
    {{#each item in this}}
      <li>{{item.comment}} ({{digital-clock item.seconds}})</li>
    {{/each}}
    </ul>
  </script>
  <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.js"></script>
  <script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js"></script>
  <script src="http://builds.emberjs.com/tags/v1.8.1/ember.js"></script>
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers