If you look at the console you’ll notice it’s complaining about the ngResource. Turns out you need to load that externally. If you add this link (https://code.angularjs.org/1.0.7/angular-resource.min.js) to the external resources, you should at least be able to retrieve a variable. Then you’ve got to figure out the dependencies of $interval.
Is there a specific need that requires you to use variables? Instead of polling for data, you could have the Core publish data every second.
I didn’t know there was a console to jsfiddle… Thank you.
I thought it would be easier to retrieve variable, I would check if listening to an event is easier.