forked from TeamCodeStream/codestream-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
22 lines (21 loc) · 726 Bytes
/
Copy patherror.html
File metadata and controls
22 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div id="{{tag}}" class="error">
<table>
<tr class="clickable" onclick='toggleHide("{{tag}}");'>
<td style="min-width:120px;">
<span class=triangle id="triangle-{{tag}}">{{html!triangle}}</span> <span class=errorCode>{{code}}</span>
</td>
<td style="min-width:250px">
<span class=errorMessage>{{message}}</span>
</td>
</tr>
</table>
<table>
<tr class="hideable hideable-{{tag}}" style="{{showDescription}}">
<td style="min-width:16px;">
</td>
<td>
<span class="errorDescription">{{description}}</span>
</td>
</tr>
</table>
</div>