I know it's an error on my part wiring it up and I've tried several different ways with the same result, injection error. Here is a jsFiddle http://jsfiddle.net/willtx/XZ3sX/1/ the has what I'm trying to wire up ( BUT it is broken there as well, not throwing an error or anything), my apologies. I'm pretty green here. It seems straight forward but....
This is the error when it executes. If I remove the code the page starts working again. Error: [$injector:unpr] Unknown provider: $rootscopeProvider <- $rootscope <- AddressBroadcastService
AddressBroadcastService's function is to allow other controllers to kickoff/react to an address verification. Here's an example of one of the other controllers that will react to the braodcast.
<div ng-controller="AddressCheckerController">
<script type="text/ng-template" id="AddressCheck.html">
<div class="modal-header">
<h3 class="modal-title">Address Verification</h3>
</div>
<div class="modal-body">
<p>
Address to verify:<br />
{{selectedRow.address}}
</p>
<span>Addresses found:</span>
<ul>
<li ng-repeat="address in modalItems">
<a ng-click="selected.modalItem = address">{{ address }}</a>
</li>
</ul>
Selected: <b>{{ selectedAddress }}</b>
</div>
<div class="modal-footer">
<button class="btn btn-primary" ng-click="ok()">OK</button>
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
</div>
</script>
</div>
I'm wide open to suggestions if I'm way off base.