JSFiddle - React, Tailwind, and code Playground

by vojtajina

HTML

<script src="http://code.angularjs.org/0.10.6/angular-0.10.6.min.js"></script>
<div ng:app ng:controller="MyController">
$location = {{$location}} ({{type}})
</div>

JavaScript

function MyController($location) {
 this.$location = $location;
 this.type = typeof $location;
}