Master Checkbox

HTML

<script src="http://code.angularjs.org/1.2.9/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<div ng-app="test" ng-controller="testCtrl">
    <input type="checkbox" id="masterCheckbox" ng-model="master">

    <div ng-repeat="item in moduleService.elements">
        <input type="checkbox" ng-checked="master">{{item.value}}
    </div>
</div>

JavaScript

angular.module('test', [])

.controller('testCtrl', function($scope) { 
    $scope.moduleService = {};
  
    $scope.moduleService.elements = [
        {value: 1},
        {value: 2},
        {value: 3}
    ]
});