Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AngularJS An Introduction to Directives Directives: restrict

I can't figure this out. Please, help!

Challenge: Update the myCourse directive so that it can be attached to the HTML only via an attribute.

It keeps saying there is a SyntaxError, but I can't figure out what I've done wrong.

Thank you!

app.js
angular.module('treehouseCourse', [])
  .directive('myCourse', function() {
    return {
      restrict: 'A', link: function ($scope, $element, $attr) { alert('Welcome to my course')
    }
  });
index.html
<!DOCTYPE html>
<html ng-app="treehouseCourse">
<head>
  <title>Angular.js</title>
  <script src="js/angular.js"></script>
  <script src="app.js"></script>
</head>
<body>

  <div my-course></div>

</body>
</html>

2 Answers

Neil Docherty
Neil Docherty
10,418 Points

It looks like your main error is the use of the $ sign on your link function parameters:

Part 1 is looking for this:

angular.module('treehouseCourse', [])
  .directive('myCourse', function() {
    return {
      restrict: 'A',
    }
  });

Part 2 looks for this:

angular.module('treehouseCourse', [])
  .directive('myCourse', function() {
    return {
      restrict: 'A',
      link: function( scope, element, attr ){alert( 'Welcome to my course' )}
    }
  });

Hope this clear things up.

Oh! Now I just feel silly. lol

Thank you!