I currently have an AngularJS controller that is basically getting some JSON asynchronously through a $http.get() call, then linking t
controller
JSON
$http.get()
The problem appears to be your html markup.
In your controller you have specified the ctrlModel is equal to this.
ctrlModel
this
In your html markup you have declared the same this to be named interactionsController. So tacking on ctrlModel to interactionsController is incorrect.
interactionsController