11
Como faço para excluir um item ou objeto de uma matriz usando o ng-click?
Estou tentando escrever uma função que permita remover um item quando o botão é clicado, mas acho que estou ficando confuso com a função - eu uso $digest? HTML & app.js: <ul ng-repeat="bday in bdays"> <li> <span ng-hide="editing" ng-click="editing = true">{{bday.name}} | {{bday.date}}</span> <form ng-show="editing" ng-submit="editing = false"> <label>Name:</label> <input …