From 6c6342c87200f02eb813eb3712fbfb73452ce511 Mon Sep 17 00:00:00 2001 From: childers Date: Tue, 2 Nov 2021 11:56:06 -0400 Subject: [PATCH] Creation of DraggableNeatBLASTFeatures tracktype This is an update to the Draggable BLASFeatiures track type to support Neat Features. This update works, but needs to have the className set to container-10px --- .../View/Track/DraggableNeatBLASTFeatures.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 client/apollo/js/View/Track/DraggableNeatBLASTFeatures.js diff --git a/client/apollo/js/View/Track/DraggableNeatBLASTFeatures.js b/client/apollo/js/View/Track/DraggableNeatBLASTFeatures.js new file mode 100644 index 000000000..146836d76 --- /dev/null +++ b/client/apollo/js/View/Track/DraggableNeatBLASTFeatures.js @@ -0,0 +1,18 @@ +define( [ + "dojo/_base/declare", + "dojo/_base/array", + "NeatHTMLFeatures/View/Track/NeatFeatures", + "WebApollo/View/Track/DraggableBLASTFeatures" + ], + function( declare, + array, + NeatFeatureTrack, + BLASTFeatureTrack + ) { +var draggableTrack = declare( [NeatFeatureTrack,BLASTFeatureTrack],{ + constructor: function(args) { } + +}); + + return draggableTrack; +});