Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info-table.html « res « inspect « commonUI « platform - github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c89a498d908d7c380c14b905cc012902c9a3e09 (plain)
1
2
3
4
5
6
7
8
<table>
    <tr ng-repeat="property in ngModel">
        <td class="label">{{property.name}}</td>
        <td title="{{property.value}}" class="value align-{{property.align}}">
            {{property.value}}
        </td>
    </tr>
</table>