Add a special line color for Window Performances

This commit is contained in:
Gaël Métais
2014-09-03 19:26:09 +02:00
parent a7493fc4a4
commit d86b93e646
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -145,7 +145,11 @@
|| node.data.callDetails.arguments[1].indexOf(textFilter) >= 0
|| node.data.callDetails.arguments[2].indexOf(textFilter) >= 0
|| node.data.callDetails.arguments[3].indexOf(textFilter) >= 0)"
ng-class="{showingDetails: node.data.showDetails, jsError: node.data.type == 'error' || node.data.type == 'jQuery version change'}">
ng-class="{
showingDetails: node.data.showDetails,
jsError: node.data.type == 'error' || node.data.type == 'jQuery version change',
windowPerformance: node.data.type == 'domInteractive' || node.data.type == 'domContentLoaded' || node.data.type == 'domContentLoadedEnd' || node.data.type == 'domComplete'
}">
<div class="index">{{$index}}</div>
<div class="type">{{node.data.type}}</div>
+3
View File
@@ -179,6 +179,9 @@ input.textFilter {
color: #e74c3c;
font-weight: bold;
}
.table > div.windowPerformance > div {
background: #EBD8E2;
}
.table > div.showingDetails > div {
background: #f1c40f;
}