28 lines
1 KiB
HTML
28 lines
1 KiB
HTML
|
|
<div class=cptRow>
|
|
<!-- The div for the input (i.e. what was typed) -->
|
|
<div class="cptRowIn" save="${rowin}"
|
|
onclick="${copyToInput}"
|
|
ondblclick="${executeRequest}">
|
|
|
|
<!-- What the user actually typed -->
|
|
<div class="cptGt">> </div>
|
|
<div class="cptOutTyped">${request.typed}</div>
|
|
|
|
<!-- The extra details that appear on hover -->
|
|
<div class=cptHover save="${duration}"></div>
|
|
<img class=cptHover onclick="${hideOutput}" save="${hide}"
|
|
alt="Hide command output" _src="${imagePath}/minus.png"/>
|
|
<img class="cptHover cptHidden" onclick="${showOutput}" save="${show}"
|
|
alt="Show command output" _src="${imagePath}/plus.png"/>
|
|
<img class=cptHover onclick="${remove}"
|
|
alt="Remove this command from the history" _src="${imagePath}/closer.png"/>
|
|
|
|
</div>
|
|
|
|
<!-- The div for the command output -->
|
|
<div class="cptRowOut" save="${rowout}">
|
|
<div class="cptRowOutput" save="${output}"></div>
|
|
<img _src="${imagePath}/throbber.gif" save="${throb}"/>
|
|
</div>
|
|
</div>
|