Test

by Rob Rothe

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<div ng-app="app" class="container">
  <div ng-controller="Controller">
    <button ng-click="hello()">
      Test
    </button>
  </div>
</div>

CSS

body {
  padding-top: 20px;
}

JavaScript

angular
  .module('app', [])
  .controller('Controller', Controller);

function Controller($scope) {
	$scope.hello = function() {
  	alert('hello');
  };
}