Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $scope.actions = [{action:"onClick()",name:"Test"}];
  2.  
  3. <li ng-repeat="action in actions">
  4. <a href="" ng-click="action.action">{{action.name}}</a>
  5. </li>
  6.  
  7. var someFunc = function() {
  8. console.log("someFunc")
  9. };
  10.  
  11. $scope.actions = [{action:someFunc,name:"Test"}];
  12.  
  13. <li ng-repeat="action in actions">
  14. <a href="" ng-click="action.action()">{{action.name}}</a>
  15. </li>
  16.  
  17. $scope.onClick = function() {
  18. alert('clicked!');
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement