author | rougeronj |
Wed, 21 Jan 2015 20:16:31 +0100 | |
changeset 103 | 123a611c7903 |
parent 100 | 0d7dac03c1a0 |
child 119 | e6605fecb175 |
permissions | -rw-r--r-- |
85
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
/** |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
* scripts/main.js |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
3 |
* |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
* This is the starting point for your application. |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
* Take a look at http://browserify.org/ for more info |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
*/ |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
7 |
|
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
8 |
'use strict'; |
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
|
98 | 10 |
var doubleroll = require('./doubleroll'); |
100 | 11 |
var annotsroll = require('./annotsroll'); |
12 |
var annotstimeline = require('./annotstimeline'); |
|
103 | 13 |
var annotsvizview = require('./annotsvizview'); |
100 | 14 |
var stageview = require('./stageview'); |
98 | 15 |
var wswrapper = require('./wswrapper'); |
16 |
var logger = require('./logger'); |
|
17 |
||
18 |
var _ = require('lodash'); |
|
85
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
19 |
|
98 | 20 |
module.exports = _({}) |
21 |
.extend(doubleroll) |
|
100 | 22 |
.extend(annotsroll) |
23 |
.extend(annotstimeline) |
|
103 | 24 |
.extend(annotsvizview) |
100 | 25 |
.extend(stageview) |
98 | 26 |
.extend(wswrapper) |
27 |
.extend(logger) |
|
100 | 28 |
.value(); |