Skip to content

Commit 563322e

Browse files
committed
[profiler] give divs a title tag
this provides a hover tag for when it is too small for the link to read
1 parent ec8930a commit 563322e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vm/moar/profiler/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ <h3>Dynamic Optimization</h3>
279279

280280
<script type="text/ng-template" id="icycle_graph_callee_renderer.html">
281281
<a href="#" class="call" style="background-color: {{backgroundColor()}};" ng-click="toCallee(callee.Node)">{{callee.name}}</a>
282-
<div class="child" style="width: {{callee.inclusive_time * 100 / total_time}}%;" ng-repeat="callee in callee.callees" ng-include="'icycle_graph_callee_renderer.html'"></div>
282+
<div class="child" style="width: {{callee.inclusive_time * 100 / total_time}}%;" ng-repeat="callee in callee.callees" title="{{callee.name}}" ng-include="'icycle_graph_callee_renderer.html'"></div>
283283
</script>
284284

285285
<div class="container" ng-show="Tab == 'Call Graph'">

0 commit comments

Comments
 (0)