plnkr / feedback

Feedback on Plunker
19 stars 11 forks source link

AngularJS links not working for me #518

Open blanthor opened 4 years ago

blanthor commented 4 years ago

I'm trying to run Scott Allen's PluralSight training on AngularJS,. It appears difficult to add angular.js libraries, and the links appear to be broken. My code looks like the tutorials but doesn't run. For instance:

Index.html: <!DOCTYPE html> <html ng-app> <head> `

<script src="script.js"></script>`

</head> <body ng-controller="MainController"> <h1>{{ message }}</h1> </body> </html>

script.js: var MainController = function($scope) { $scope.message = "Hello"; };