blob: 63151681aa43ecb22aed405abf6f45fc29a786e0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | angular
  .module('nsPopoverExample', ['nsPopover'])
  .controller('MainCtrl', function($scope) {
    $scope.items = [{
      name: "Action"
    }, {
      name: "Another action"
    }, {
      name: "Something else here"
    }];
  });
 |