diff options
| author | ARC <arjunrc@gmail.com> | 2015-04-28 11:26:57 -0400 |
|---|---|---|
| committer | ARC <arjunrc@gmail.com> | 2015-04-28 11:26:57 -0400 |
| commit | 6fa29c170159e7bfbcaf7681cdfb52ba7f98cac0 (patch) | |
| tree | 0039de6ab6324d0d91cb63383a290a9205541043 /www/lib/ng-mfb/demo/demo-module.js | |
| parent | 6e83957c0231d48eb9f29d1270806cadef3a3c6d (diff) | |
Events navigation not works with a cool full screen mode and floating buttons
Diffstat (limited to 'www/lib/ng-mfb/demo/demo-module.js')
| -rw-r--r-- | www/lib/ng-mfb/demo/demo-module.js | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/www/lib/ng-mfb/demo/demo-module.js b/www/lib/ng-mfb/demo/demo-module.js new file mode 100644 index 00000000..25030e60 --- /dev/null +++ b/www/lib/ng-mfb/demo/demo-module.js @@ -0,0 +1,47 @@ +var app = angular.module('test-app', ['demo']); + +app.value('defaultValues', { + positions: [{ + name: 'Position', + },{ + value: 'tl', + name: 'Top left' + },{ + value: 'tr', + name: 'Top right' + },{ + value: 'br', + name: 'Bottom right' + },{ + value: 'bl', + name: 'Bottom left' + }], + + + effects: [{ + name: 'Effect', + },{ + value: 'slidein', + name: 'Slide in + fade' + },{ + value: 'zoomin', + name: 'Zoom in' + },{ + value: 'fountain', + name: 'Fountain' + },{ + value: 'slidein-spring', + name: 'Slidein (spring)' + }], + + methods: [{ + name: 'Method' + },{ + value: 'click', + name: 'Click' + },{ + value: 'hover', + name: 'Hover' + } + ] +}); |
