File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1529,7 +1529,7 @@ ExecutionVisualizer.prototype.renderDataStructures = function() {
15291529 // make sure varname doesn't contain any weird
15301530 // characters that are illegal for CSS ID's ...
15311531 var varDivID = myViz . generateID ( 'global__' + varnameToCssID ( varname ) ) ;
1532- $ ( this ) . append ( '<span id="' + varDivID + '"> </span >' ) ;
1532+ $ ( this ) . append ( '<div id="' + varDivID + '"> </div >' ) ;
15331533
15341534 assert ( ! connectionEndpointIDs . has ( varDivID ) ) ;
15351535 var heapObjID = myViz . generateID ( 'heap_object_' + getRefID ( val ) ) ;
@@ -1672,8 +1672,7 @@ ExecutionVisualizer.prototype.renderDataStructures = function() {
16721672 // characters that are illegal for CSS ID's ...
16731673 var varDivID = myViz . generateID ( varnameToCssID ( frame . unique_hash + '__' + varname ) ) ;
16741674
1675- // creepy - <div> doesn't work here, but <span> does ... ugh
1676- $ ( this ) . append ( '<span id="' + varDivID + '"> </span>' ) ;
1675+ $ ( this ) . append ( '<div id="' + varDivID + '"> </div>' ) ;
16771676
16781677 assert ( ! connectionEndpointIDs . has ( varDivID ) ) ;
16791678 var heapObjID = myViz . generateID ( 'heap_object_' + getRefID ( val ) ) ;
You can’t perform that action at this time.
0 commit comments