JSFiddle - React, Tailwind, and code Playground

by Unspecified

HTML

<script src="http://builds.emberjs.com.s3.amazonaws.com/handlebars-1.0.0-rc.4.js"></script>
<script src="http://builds.emberjs.com.s3.amazonaws.com/ember-4daa46780df82d754b1fa072a1259899501ac360.js"></script>
<script type="text/x-handlebars">
    {{view App.RotatingView}}
</script>

JavaScript

App = Ember.Application.create();

App.RotatingView = Ember.View.extend({
  templateString: null,
  views: ["a", "b", "c"],
  template: (function() {
    return Ember.Handlebars.compile(string);
  }).property("templateString"),
  _getNextTemplate: function() {
  }
});