annotate src/DML/MainVisBundle/Resources/assets/marionette/modules/GraphicsRenderingModule/GraphicsRenderingModule.20-Renderer.chord-seq.od-grid.js @ 1:f38015048f48 tip

Added GPL
author Daniel Wolff
date Sat, 13 Feb 2016 20:43:38 +0100
parents 493bcb69166c
children
rev   line source
Daniel@0 1 "use strict";
Daniel@0 2
Daniel@0 3 App.module("GraphicsRenderingModule", function(GraphicsRenderingModule, App, Backbone, Marionette, $, _, Logger) {
Daniel@0 4
Daniel@0 5 GraphicsRenderingModule.addInitializer(function(options) {
Daniel@0 6
Daniel@0 7 GraphicsRenderingModule.registerRenderer({
Daniel@0 8 id : "chord-seq.od-grid",
Daniel@0 9 inherit : "chord-seq._",
Daniel@0 10
Daniel@0 11 defaultVegaConfig: {
Daniel@0 12 // chordSize – calculated based on width
Daniel@0 13 // chordGapSize – calculated based on width
Daniel@0 14
Daniel@0 15 },
Daniel@0 16
Daniel@0 17 _formVC: function(vc, data, options) {
Daniel@0 18 throw "not implemented";
Daniel@0 19 },
Daniel@0 20 });
Daniel@0 21 });
Daniel@0 22 }, Logger);