surface selection in famo.us + angular
问题 I'm wondering how I can select specific fa-surface elements so that I can deal with them in a controller as surface objects. I have this markup <fa-modifier ng-repeat="item in list"> <fa-image-surface fa-click="itemClick($index)"> {{item.name}} </fa-image-surface> </fa-modifier> On itemClick(), I want to be able to apply modifiers in my controller to operate on a particular surface as an object (as seems typical in famo.us without the angular). Right now, if I try something like this <fa