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 2a8493f40c
commit 2e10659472

View File

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