Daniel@0: "use strict"; Daniel@0: Daniel@0: App.module("GraphicsRenderingModule", function(GraphicsRenderingModule, App, Backbone, Marionette, $, _, Logger) { Daniel@0: Daniel@0: GraphicsRenderingModule.addInitializer(function(options) { Daniel@0: Daniel@0: GraphicsRenderingModule.registerRenderer({ Daniel@0: id : "chord-seq.od-grid", Daniel@0: inherit : "chord-seq._", Daniel@0: Daniel@0: defaultVegaConfig: { Daniel@0: // chordSize – calculated based on width Daniel@0: // chordGapSize – calculated based on width Daniel@0: Daniel@0: }, Daniel@0: Daniel@0: _formVC: function(vc, data, options) { Daniel@0: throw "not implemented"; Daniel@0: }, Daniel@0: }); Daniel@0: }); Daniel@0: }, Logger);