Hi Andrey, An isolate scope is isolated to your directive. Before (approx) 1.2 there was a bug that made it leak into other directives, and even into children. That bug is fixed. If you need that, you don't need an isolate scope, but a new scope (``` scope:true ```). Changes made on this scope are not visible to it's parents. But those changes are visible to it's sibling directives and/or children.
Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
