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 what it is.
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 what it is.
 
    
     
    
    "Note, by default, directives do not create new scope -- i.e., the default is
scope: false"
from Understanding scopes.
Using the scope option in directive you can:
scope: truescope: {} then you can bind some property to parent scopes  with '@', '&', '=' (see this question).scope: false (default).