This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
I have a web application that uses Angular everywhere.
Many functionalities are implemented using directives with isolated scope.
I need to have a few global variables available to all my angular views, preferrably without having to change all their controllers.
I know I can bind to rootScope variables from "normal views", but I can't do the same thing with isolated scope directive views.
This fiddle illustrates the problem:
http://jsfiddle.net/3XT3F/7/
Is this a bug? Any hints?