summaryrefslogtreecommitdiff
path: root/www/lib/ng-mfb/demo
diff options
context:
space:
mode:
Diffstat (limited to 'www/lib/ng-mfb/demo')
-rw-r--r--www/lib/ng-mfb/demo/demo-module.js16
1 files changed, 12 insertions, 4 deletions
diff --git a/www/lib/ng-mfb/demo/demo-module.js b/www/lib/ng-mfb/demo/demo-module.js
index 25030e60..ba999ebd 100644
--- a/www/lib/ng-mfb/demo/demo-module.js
+++ b/www/lib/ng-mfb/demo/demo-module.js
@@ -2,7 +2,7 @@ var app = angular.module('test-app', ['demo']);
app.value('defaultValues', {
positions: [{
- name: 'Position',
+ name: 'Position'
},{
value: 'tl',
name: 'Top left'
@@ -17,9 +17,8 @@ app.value('defaultValues', {
name: 'Bottom left'
}],
-
effects: [{
- name: 'Effect',
+ name: 'Effect'
},{
value: 'slidein',
name: 'Slide in + fade'
@@ -43,5 +42,14 @@ app.value('defaultValues', {
value: 'hover',
name: 'Hover'
}
- ]
+ ],
+ actions: [{
+ name: 'Fire Main Action?'
+ }, {
+ value: 'fire',
+ name: 'Fire'
+ }, {
+ value: 'nofire',
+ name: 'Don\'t Fire'
+ }]
});