I have information structured like this:
$scope.cart={"4": {"cost": 802.85, "description": "test", "qty": 1},
"5": {"cost": 802.85, "description": "test", "qty": 1}};
My goal is to iterate through this data and show it with a remove button. How can I set up the button to delete the row from the scope and trigger an angular digest? Most tutorials deal with data in arrays and splicing them, which isn't suitable for my situation.
This is my progress so far: http://jsfiddle.net/wbebc4cd/1/