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

Commit 2e10659

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 2a8493f commit 2e10659

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
@@ -747,7 +747,7 @@ function isLeafNode (node) {
747747
</div>
748748
749749
<script>
750-
angular.module('copyExample')
750+
angular.module('copyExample', [])
751751
.controller('ExampleController', ['$scope', function($scope) {
752752
$scope.master= {};
753753

0 commit comments

Comments
 (0)