summaryrefslogtreecommitdiff
path: root/www/lib/ng-mfb/demo/demo-module.js
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
commitf3136eefe9105deb1d97123629dae80c2de66304 (patch)
tree5389bd34d555ab4c3c065292e17cd41576db33ae /www/lib/ng-mfb/demo/demo-module.js
parent5e523cf0d1a3644f6a41709b777b08f73ec71d49 (diff)
updated libraries, squashed the problem of not getting bar handles on click, optimized montage view
Diffstat (limited to 'www/lib/ng-mfb/demo/demo-module.js')
-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'
+ }]
});