0
votes

I'm learning angularJs and reading ng-book.

I was trying out the examples related the isolated scope in directives. In the book it has example published in JS Bin, which uses angular 1.2.0-rc.3 and it works fine. But when I tried the same example with version 1.3.0-beta.13 it doesn't work. I can see the parent value inside the directive with isolated scope. You can see the code here

Can someone guide me on how to get isolated scope working in angular 1.3.0-beta.13.

1

1 Answers

1
votes

You should set directive's template property to assign it's html or use transclude if you want to use directive-caller's element inner html bindings. See