How to run AngularJS on JSFiddle?

715 Views Asked by At

I have a trouble with starting an example in JSFiddle, it's simple code with AngularJS module, but I get a error with injecting module.

Javascript code:

angular
  .module('App', ['ngMaterial'])
  .controller('Ctrl', function($scope) {
    $scope.text = 'Hello';
  });

Html code:

<div ng-app="App" ng-controller="Ctrl">
  {{ text }}
</div>

Please, help me to fix it. Link to my JSFiddle

1

There are 1 best solutions below

2
On BEST ANSWER

You need to change you javascript Load Type configuration. For example:

No wrap - in <body> or <head>

enter image description here

Updated JSFiddle