docs(misc core): fixed broken angular.copy example

The module was not being registered, and this broke the example for who knows how long!

Closes #8218
This commit is contained in:
Almar
2014-07-16 17:14:01 +02:00
committed by Caitlin Potter
parent 4adc44a3d1
commit d2f348b04c

View File

@@ -735,7 +735,7 @@ function isLeafNode (node) {
</div>
<script>
angular.module('copyExample')
angular.module('copyExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.master= {};