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; +});