What is the default scope value of an AngularJS directive?
Of course, it is not isolated scope. It is true or false.
I can\'t find any documentation on wha
By default, directives shared the scope of the containing controller. You can specify scope:true to have a inherited scope and to get a isolated scope you have to do the following
scope:true
scope:{ something1:"@", something2:"=" something3:"&" }