client/annotviz/app/js/main.js
author rougeronj
Wed, 21 Jan 2015 12:14:16 +0100
changeset 102 cc7b06bfd574
parent 100 0d7dac03c1a0
child 103 123a611c7903
permissions -rw-r--r--
update to circle representation

/**
 * scripts/main.js
 *
 * This is the starting point for your application.
 * Take a look at http://browserify.org/ for more info
 */

'use strict';

var doubleroll = require('./doubleroll');
var annotsroll = require('./annotsroll');
var annotstimeline = require('./annotstimeline');
var stageview = require('./stageview');
var wswrapper = require('./wswrapper');
var logger = require('./logger');

var _ = require('lodash');

module.exports = _({})
    .extend(doubleroll)
    .extend(annotsroll)
    .extend(annotstimeline)
    .extend(stageview)
    .extend(wswrapper)
    .extend(logger)
    .value();