diff options
Diffstat (limited to 'example/index.js')
| -rw-r--r-- | example/index.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/example/index.js b/example/index.js new file mode 100644 index 0000000..6315168 --- /dev/null +++ b/example/index.js @@ -0,0 +1,11 @@ +angular
+ .module('nsPopoverExample', ['nsPopover'])
+ .controller('MainCtrl', function($scope) {
+ $scope.items = [{
+ name: "Action"
+ }, {
+ name: "Another action"
+ }, {
+ name: "Something else here"
+ }];
+ });
\ No newline at end of file |
