Guest User

Untitled

a guest
Oct 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <div ng-repeat="topic in topics">
  2. <button type="button" onclick="testMe(topic)" value="test"/>
  3. </div>
  4.  
  5. ------------------
  6.  
  7. $scope.testMe = function(topic) {
  8. alert(topic.name);
  9. };
Add Comment
Please, Sign In to add comment