Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d2f348b

Browse files
Almarcaitp
authored andcommitted
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
1 parent 4adc44a commit d2f348b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ function isLeafNode (node) {
735735
</div>
736736
737737
<script>
738-
angular.module('copyExample')
738+
angular.module('copyExample', [])
739739
.controller('ExampleController', ['$scope', function($scope) {
740740
$scope.master= {};
741741

0 commit comments

Comments
 (0)