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 trialBuffalo Soldiers
2,871 PointsCustom directive returning error in Angular Basics.
So this is the custom directive that I wrote.
angular.module("foobar").directive("customDirective", function(){ return null; };);
This doesn't work, what's wrong with it.
angular.module("foobar").directive("customDirective", function(){
return null;
};);
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey there,
I think you're talking about the second part of the challenge where you are adding the second directive. If so, you seem to have added a bit more that what the challenge asked for and seem to have an extra semi-colon and parentheses.
You've got most of it correct, except the challenge never asked for a return statement, and you do have that extra semicolon and parentheses at the end.
The corrected code will look like this:
angular.module("foobar", []).directive("customDirective", function(){
});
Hope it makes sense. Keep Coding! :)