Skip to content

Commit 6c6342c

Browse files
authored
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
1 parent d46e22d commit 6c6342c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
define( [
2+
"dojo/_base/declare",
3+
"dojo/_base/array",
4+
"NeatHTMLFeatures/View/Track/NeatFeatures",
5+
"WebApollo/View/Track/DraggableBLASTFeatures"
6+
],
7+
function( declare,
8+
array,
9+
NeatFeatureTrack,
10+
BLASTFeatureTrack
11+
) {
12+
var draggableTrack = declare( [NeatFeatureTrack,BLASTFeatureTrack],{
13+
constructor: function(args) { }
14+
15+
});
16+
17+
return draggableTrack;
18+
});

0 commit comments

Comments
 (0)