JSFiddle - React, Tailwind, and code Playground
by Bretto
HTML
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap.js"></script>
<div ng-app="myApp">
<div ng-controller="MyCtrl">
<button type="button" class="btn active btn-primary" ng-click="onPostAlert()"
>Post Alert
</button>
</div>
</div>
JavaScript
angular.module('myApp', [])
.controller('MyCtrl', ['$scope', function ($scope) {
$scope.onPostAlert= function () {
return notesService.notes();
};
}]);