client/annotviz/app/js/main.js
author ymh <ymh.work@gmail.com>
Tue, 20 Jan 2015 11:57:44 +0100
changeset 98 72d767c5142d
parent 96 f58715468f1e
child 100 0d7dac03c1a0
permissions -rw-r--r--
refactor and make work annotsroll
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    10
var doubleroll = require('./doubleroll');
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    11
var annotroll = require('./annotsroll');
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    12
var wswrapper = require('./wswrapper');
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    13
var logger = require('./logger');
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    14
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    15
var _ = require('lodash');
85
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
98
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    17
module.exports = _({})
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    18
    .extend(doubleroll)
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    19
    .extend(annotroll)
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    20
    .extend(wswrapper)
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    21
    .extend(logger)
72d767c5142d refactor and make work annotsroll
ymh <ymh.work@gmail.com>
parents: 96
diff changeset
    22
    .value();