Event Handler reference issue
_data.addEventListener(SiteData.LOAD_COMPLETE, build);

It seemed that even though I called this method in one view instance, it would still call the build method in all view instances.

Specifying this seems to solve that issue.
_data.addEventListener(SiteData.LOAD_COMPLETE, this.build);
•9.•8.•3