I thought an equal sign means two way binding? As in I'd bring in a value of a camelCased attribute to my directive.
What does this = mean then? I'm looking over some more advanced code in a book
.directive('contentHandler', function () {
return {
scope: {
feed: '=contentHandler',
onChange: '&'
},
I see it again here:
return {
scope: {
value: '=debug'
},
Here is the html associated with the first one:
<div content-handler="feed" on-change="onUpdate(element, action)">