| 12345678910111213141516171819202122232425262728 |
- <div class="ed-p-node-info">
- <div class="modal-header">
- <h4 class="modal-title">Node Details</h4>
- </div>
- <div class="modal-body">
- <table id="ed-m-property-table" class="table">
- <thead>
- <tr>
- <th>property</th>
- <th>value</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="key in objectKeys | orderBy:identityFn">
- <td>{{key}}</td>
- <td>{{node[key]}}</td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="modal-footer">
- <button type="button" ng-click="close()" class="btn btn-primary">Close</button>
- </div>
- </div>
|