JSFiddle - React, Tailwind, and code Playground

by stefek99

HTML

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://builds.emberjs.com/tags/v1.13.2/ember.debug.js"></script>
<script src="http://builds.emberjs.com/tags/v1.13.2/ember-template-compiler.js"></script>
  <script type="text/x-handlebars">
    <h2>Ember Starter Kit</h2>
       
    <div data-camelCase={{ someProperty}}>Inspect me and see if camelCase is preserved</div>
  </script>

JavaScript

App = Ember.Application.create();

App.ApplicationController = Ember.Controller.extend({    
    someProperty: "data attributes capitalisation is lost"
});