Skip to content

Commit

Permalink
Merge pull request #682 from zborboa-google/patch-1
Browse files Browse the repository at this point in the history
Alternate row color on profiling panel
  • Loading branch information
tim-schilling committed Feb 28, 2015
2 parents 5a63ca6 + eeec67c commit 6270a9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<tbody>
{% for call in func_list %}
<!-- style="background:{{ call.background }}" -->
<tr class="djDebugProfileRow{% for parent_id in call.parent_ids %} djToggleDetails_{{ parent_id }}{% endfor %}" depth="{{ call.depth }}">
<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %} djDebugProfileRow{% for parent_id in call.parent_ids %} djToggleDetails_{{ parent_id }}{% endfor %}" depth="{{ call.depth }}">
<td>
<div style="padding-left: {{ call.indent }}px;">
{% if call.has_subfuncs %}
Expand Down

0 comments on commit 6270a9e

Please sign in to comment.