Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the JSFiddle that shows what I'm doing, simply adding a filter to name.

http://jsfiddle.net/9Z5SJ/1/

Error: Unknown provider: linkyFilterProvider <- linkyFilter
    at Error (unknown source)
    at http://code.angularjs.org/angular-1.0.0rc10.js:2530:15
    at Object.getService [as get] (http://code.angularjs.org/angular-1.0.0rc10.js:2658:39)
    at http://code.angularjs.org/angular-1.0.0rc10.js:2535:45
    at Object.getService [as get] (http://code.angularjs.org/angular-1.0.0rc10.js:2658:39)
    at http://code.angularjs.org/angular-1.0.0rc10.js:8956:24
    at filter (http://code.angularjs.org/angular-1.0.0rc10.js:5744:14)
    at _filterChain (http://code.angularjs.org/angular-1.0.0rc10.js:5735:41)
    at statements (http://code.angularjs.org/angular-1.0.0rc10.js:5711:25)
    at parser (http://code.angularjs.org/angular-1.0.0rc10.js:5644:13) 

Documentation on the linky filter http://docs.angularjs.org/api/angular.module.ngSanitize.filter.linky

share|improve this question
jsfiddle.net/9Z5SJ/4 – Shane Stillwell Jun 6 '12 at 20:20

1 Answer

up vote 3 down vote accepted

You need to load and include the "sanitize" module to use "linky":

Look for these two things: 1. I added "http://docs.angularjs.org/angular-sanitize-1.0.0rc10.min.js" as a resource 2. I linked it into my module by adding "ngSanitize" to angular.module('myApp',['ngSanitize']);

See here: http://jsfiddle.net/johnlindquist/y2eJL/

share|improve this answer
1  
Their documentation does not make this readily apparent. I'm still learning the ins/outs of angularjs. – Shane Stillwell Jun 6 '12 at 23:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.