Mercurial > hg > dml-open-vis
annotate src/DML/MainVisBundle/Resources/assets/marionette/modules/RepresentationModule/RepresentationModule.30-Master.view._unknown.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("RepresentationModule", function(RepresentationModule, App, |
Daniel@0 | 4 Backbone, Marionette, $, _, Logger) { |
Daniel@0 | 5 |
Daniel@0 | 6 RepresentationModule.addInitializer(function(options) { |
Daniel@0 | 7 |
Daniel@0 | 8 RepresentationModule.registerMaster({ |
Daniel@0 | 9 id : "view._unknown", |
Daniel@0 | 10 inherit : "view._", |
Daniel@0 | 11 |
Daniel@0 | 12 options : { |
Daniel@0 | 13 visInstanceContentHeightMin : 20, |
Daniel@0 | 14 visInstanceContentHeightMax : 20, |
Daniel@0 | 15 }, |
Daniel@0 | 16 |
Daniel@0 | 17 defaultConfigParameterValues: { |
Daniel@0 | 18 widthToHeightRatio: undefined |
Daniel@0 | 19 }, |
Daniel@0 | 20 |
Daniel@0 | 21 |
Daniel@0 | 22 // ================================================================= |
Daniel@0 | 23 // config grid header |
Daniel@0 | 24 |
Daniel@0 | 25 _generateHeaderLabelSuffix : function(headerView) { |
Daniel@0 | 26 return " (unknown feature)"; |
Daniel@0 | 27 }, |
Daniel@0 | 28 |
Daniel@0 | 29 |
Daniel@0 | 30 // ================================================================= |
Daniel@0 | 31 // dynamic derived vis instance data |
Daniel@0 | 32 |
Daniel@0 | 33 |
Daniel@0 | 34 // ----------------------------------------------------------------- |
Daniel@0 | 35 // dynamic derived vis instance data - base |
Daniel@0 | 36 |
Daniel@0 | 37 _generateCustomParamsForBasePerspectiveRequestParams: function(viewConfig) { |
Daniel@0 | 38 return null; |
Daniel@0 | 39 }, |
Daniel@0 | 40 |
Daniel@0 | 41 }); |
Daniel@0 | 42 }); |
Daniel@0 | 43 }, Logger); |