Angular Template

by adamk33n3r

HTML

<div ng-app="testApp" ng-controller="TestCtrl">
    <input type="checkbox" ng-model="stuff" ng-change="hello()"/>{{stuff}}
</div>

JavaScript

app = angular.module('testApp',[]);

app.controller('TestCtrl', function($scope) {
    $scope.stuff = true;
    $scope.hello = function() {
        console.log("hello");
    }
});