JSFiddle - React, Tailwind, and code Playground
by Alan Doe
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular.min.js"></script>
<div class="content" ng-app="myApp" ng-controller="c" ng-click="touch($event)">
<div class="myStuff" ng-click="touched($event)"></div>
</div>
CSS
.content
{
background:rgb(240,240,240);
width:400px;
height:500px;
}
.myStuff
{
width:60px;
height:60px;
background:rgb(250,250,250);
}
JavaScript
var mod = angular.module('myApp',[]);
mod.controller('c',function($scope){
});