author | rougeronj |
Thu, 16 Apr 2015 12:15:33 +0200 | |
changeset 153 | 60bd2b36b9dc |
parent 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'); |
|
119 | 17 |
var utils = require('./utils'); |
98 | 18 |
|
19 |
var _ = require('lodash'); |
|
85
eff9460bd4f2
add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
20 |
|
98 | 21 |
module.exports = _({}) |
22 |
.extend(doubleroll) |
|
100 | 23 |
.extend(annotsroll) |
24 |
.extend(annotstimeline) |
|
103 | 25 |
.extend(annotsvizview) |
100 | 26 |
.extend(stageview) |
98 | 27 |
.extend(wswrapper) |
28 |
.extend(logger) |
|
119 | 29 |
.extend(utils) |
30 |
.value(); |