All files / lib index.js

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                                          25x 25x           25x  
 
/*jslint browser:true, node:true*/
 
/**
 * FruitMachine Singleton
 *
 * Renders layouts/modules from a basic layout definition.
 * If views require custom interactions devs can extend
 * the basic functionality.
 *
 * @version 0.6.0
 * @copyright The Financial Times Limited [All Rights Reserved]
 * @author Wilson Page <wilson.page@ft.com>
 */
 
'use strict';
 
/**
 * Module Dependencies
 */
 
var fruitMachine = require('./fruitmachine');
var Model = require('model');
 
/**
 * Exports
 */
 
module.exports = fruitMachine({ Model: Model });